Cargo.toml 1.01 KiB
Newer Older
[package]
name = "jsonrpsee-ws-server"
version = "0.2.0-alpha"
authors = ["Parity Technologies <[email protected]>", "Pierre Krieger <[email protected]>"]
description = "WebSocket server for JSON-RPC"
edition = "2018"
license = "MIT"

[dependencies]
Maciej Hirsz's avatar
Maciej Hirsz committed
anyhow = "1.0.34"
async-std = { version = "1.8.0", features = ["attributes"] }
Maciej Hirsz's avatar
Maciej Hirsz committed
beef = "0.5"
bs58 = "0.4"
fnv = "1"
futures = "0.3"
jsonrpsee-types = { path = "../types", version = "0.2.0-alpha" }
log = "0.4"
parking_lot = "0.11"
rand = "0.8"
Maciej Hirsz's avatar
Maciej Hirsz committed
rustc-hash = "1.1.0"
serde = { version = "1", default-features = false, features = ["derive"] }
Maciej Hirsz's avatar
Maciej Hirsz committed
serde_json = { version = "1", features = ["raw_value"] }
soketto = "0.4"
Maciej Hirsz's avatar
Maciej Hirsz committed
tokio = { version = "1", features = ["net", "rt-multi-thread", "macros"] }
tokio-stream = { version = "0.1.1", features = ["net"] }
tokio-util = { version = "0.6", features = ["compat"] }
thiserror = "1"

[dev-dependencies]
jsonrpsee-test-utils = { path = "../test-utils" }
jsonrpsee-ws-client = { path = "../ws-client" }
tokio = { version = "1", features = ["full"] }