aboutsummaryrefslogtreecommitdiff
path: root/jsonrpc/jsonrpc_internal/Cargo.toml
blob: 5a3acc409ceeb9fa7527f432c2cb4286180f7dfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "karyon_jsonrpc_internal"
version.workspace = true
edition.workspace = true

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[features]
default = ["smol"]
smol = ["karyon_core/smol", "karyon_net/smol"]
tokio = ["karyon_core/tokio", "karyon_net/tokio"]

[dependencies]
karyon_core = { workspace = true, default-features = false }
karyon_net = { workspace = true, default-features = false }

serde_json = "1.0.114"
thiserror = "1.0.58"