forked from paritytech/jsonrpsee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (31 loc) · 968 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
25
26
27
28
29
30
31
32
33
[package]
name = "jsonrpsee-ws-client"
version = "0.2.0-alpha.6"
authors = ["Parity Technologies <[email protected]>", "Pierre Krieger <[email protected]>"]
description = "WebSocket client for JSON-RPC"
edition = "2018"
license = "MIT"
repository = "https://github.com/paritytech/jsonrpsee"
homepage = "https://github.com/paritytech/jsonrpsee"
documentation = "https://docs.rs/jsonrpsee-ws-client"
[dependencies]
async-trait = "0.1"
async-std = "1.9"
async-tls = "0.11"
fnv = "1"
futures = { version = "0.3", default-features = false, features = ["std"] }
jsonrpsee-types = { path = "../types", version = "0.2.0-alpha.6" }
log = "0.4"
serde = "1"
serde_json = "1"
soketto = "0.4"
pin-project = "1"
thiserror = "1"
url = "2"
webpki = { version = "0.22", features = ["std"] }
rustls = "0.19.1"
rustls-native-certs = "0.5.0"
[dev-dependencies]
env_logger = "0.8"
jsonrpsee-test-utils = { path = "../test-utils" }
tokio = { version = "1", features = ["full"] }