-
Notifications
You must be signed in to change notification settings - Fork 176
/
Copy pathCargo.toml
29 lines (28 loc) · 1.11 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
[package]
name = "jsonrpsee-integration-tests"
description = "Integration tests for jsonrpsee"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
publish = false
[dev-dependencies]
anyhow = { workspace = true }
fast-socks5 = { workspace = true }
futures = { workspace = true, features = ["std"] }
futures-util = { workspace = true, features = ["alloc"]}
http-body-util = { workspace = true }
hyper = { workspace = true }
hyper-util = { workspace = true, features = ["http1", "client", "client-legacy"] }
jsonrpsee = { path = "../jsonrpsee", features = ["server", "client-core", "http-client", "ws-client", "macros"] }
jsonrpsee-test-utils = { path = "../test-utils" }
serde = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true, features = ["rt-multi-thread", "time"] }
tokio-stream = { workspace = true }
tokio-util = { workspace = true, features = ["compat"]}
tower = { workspace = true }
tower-http = { workspace = true, features = ["cors"] }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
pin-project = { workspace = true }