aboutsummaryrefslogtreecommitdiff
path: root/jsonrpc/Cargo.toml
blob: 5a7c2ba551bef1b851c071c2b5aef27d5c509de8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "karyon_jsonrpc"
description = "A fast and lightweight async JSONRPC2.0 implementation."
version.workspace = true
edition.workspace = true
homepage.workspace = true
repository.workspace = true
license.workspace = true
authors.workspace = true
readme = "README.md"


[features]
default = ["smol", "tcp", "unix"]
tcp = ["karyon_net/tcp"]
tls = ["tcp", "karyon_net/tls"]
ws = ["tcp", "karyon_net/ws", "async-tungstenite"]
unix = ["karyon_net/unix"]
smol = [
  "karyon_core/smol",
  "karyon_net/smol",
  "karyon_jsonrpc_macro/smol",
  "async-tungstenite?/async-std-runtime",
]
tokio = [
  "karyon_core/tokio",
  "karyon_net/tokio",
  "karyon_jsonrpc_macro/tokio",
  "async-tungstenite?/tokio-runtime",
]

[dependencies]
karyon_core = { version = "0.1.3", path = "../core", default-features = false }
karyon_net = { version = "0.1.3", path = "../net", default-features = false }

karyon_jsonrpc_macro = { version = "0.1.3", path = "jsonrpc_macro", default-features = false }

log = "0.4.21"
rand = "0.8.5"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
thiserror = "1.0.58"
async-trait = "0.1.77"
async-channel = "2.3.1"

async-tungstenite = { version = "0.25.0", default-features = false, optional = true }

[dev-dependencies]
env_logger = "0.11.3"
smol = "2.0.0"