-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
25 lines (21 loc) · 827 Bytes
/
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
[package]
name = "websocket-tungstenite-retry"
version = "0.6.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
url = "^2.1"
anyhow = "^1.0"
log = "^0.4"
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
tokio = { version = "^1", features = ["rt-multi-thread", "time", "macros", "sync", "io-util"] }
tokio-util = "0.7"
tokio-tungstenite = { version = "^0.17", features = ["native-tls"] }
futures-util = { version = "0.3", default-features = false, features = ["sink", "std"] }
tracing = "0.1.37"
[dev-dependencies]
tower-http = { version = "0.4.0", features = ["full"] }
tower = { version = "0.4.13", features = ["full"] }
env_logger = "^0.8.4"
jsonrpsee = { version = "^0.18.1", features = ["http-client", "macros"] }