-
Notifications
You must be signed in to change notification settings - Fork 176
/
Copy pathCargo.toml
94 lines (90 loc) · 2.89 KB
/
Cargo.toml
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[workspace]
members = [
"benches",
"client/http-client",
"client/transport",
"client/wasm-client",
"client/ws-client",
"core",
"examples",
"jsonrpsee",
"proc-macros",
"server",
"test-utils",
"tests",
"tests/wasm-tests",
"tests/proc-macro-core",
"types",
]
resolver = "2"
[workspace.package]
authors = ["Parity Technologies <[email protected]>", "Pierre Krieger <[email protected]>"]
version = "0.24.7"
edition = "2021"
rust-version = "1.74.0"
license = "MIT"
repository = "https://github.com/paritytech/jsonrpsee"
documentation = "https://docs.rs/jsonrpsee"
homepage = "https://www.parity.io/"
keywords = ["jsonrpc", "json", "http", "websocket", "WASM"]
readme = "README.md"
[workspace.dependencies]
# Internal jsonrpsee crates
jsonrpsee-client-transport = { path = "client/transport", version = "0.24.7" }
jsonrpsee-core = { path = "core", version = "0.24.7" }
jsonrpsee-http-client = { path = "client/http-client", version = "0.24.7" }
jsonrpsee-proc-macros = { path = "proc-macros", version = "0.24.7" }
jsonrpsee-server = { path = "server", version = "0.24.7" }
jsonrpsee-types = { path = "types", version = "0.24.7" }
jsonrpsee-wasm-client = { path = "client/wasm-client", version = "0.24.7" }
jsonrpsee-ws-client = { path = "client/ws-client", version = "0.24.7" }
# Deps used by the jsonrpsee crates.
async-trait = "0.1"
base64 = { version = "0.22", default-features = false, features = ["alloc"] }
bytes = "1.6"
futures-channel = { version = "0.3.14", default-features = false }
futures-timer = "3"
futures-util = { version = "0.3.14", default-features = false }
gloo-net = { version = "0.6.0", default-features = false }
heck = "0.5.0"
http = "1"
http-body = "1"
http-body-util = "0.1.0"
hyper = "1.5"
hyper-rustls = { version = "0.27", default-features = false }
hyper-util = "0.1"
parking_lot = "0.12"
pin-project = "1.1.3"
proc-macro-crate = "3"
proc-macro2 = "1"
quote = "1"
rand = "0.8"
route-recognizer = "0.3.1"
rustc-hash = "2"
rustls = { version = "0.23", default-features = false }
rustls-pki-types = "1"
rustls-platform-verifier = "0.5"
serde = { version = "1", default-features = false, features = ["derive"] }
serde_json = { version = "1", default-features = false, features = ["alloc", "raw_value"] }
soketto = "0.8.1"
syn = { version = "2", default-features = false }
thiserror = "2"
tokio = "1.42"
tokio-rustls = { version = "0.26", default-features = false }
tokio-stream = "0.1.7"
tokio-util = "0.7"
tower = "0.5"
tower-http = "0.6"
tracing = "0.1.34"
url = "2.4"
wasm-bindgen-futures = "0.4.19"
# Dev dependencies
anyhow = "1"
console-subscriber = "0.4"
criterion = { version = "0.5", features = ["async_tokio", "html_reports"] }
fast-socks5 = "0.10"
futures = { version = "0.3.14", default-features = false, features = ["std"] }
pprof = { version = "0.14", features = ["flamegraph", "criterion"] }
socket2 = "0.5.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
trybuild = "1.0.97"