Cargo.toml 1.49 KiB
Newer Older
[package]
name = "jsonrpsee-utils"
version = "0.6.0"
authors = ["Parity Technologies <[email protected]>"]
description = "Utilities for jsonrpsee"
edition = "2018"
license = "MIT"

[dependencies]
Maciej Hirsz's avatar
Maciej Hirsz committed
arrayvec = "0.7.1"
beef = { version = "0.5.1", features = ["impl_serde"] }
thiserror = { version = "1", optional = true }
futures-channel = { version = "0.3.14", default-features = false, optional = true }
futures-util = { version = "0.3.14", default-features = false, optional = true }
hyper = { version = "0.14.10", default-features = false, features = ["stream"], optional = true }
jsonrpsee-types = { path = "../types", version = "0.6.0", optional = true }
tracing = { version = "0.1", optional = true }
rustc-hash = { version = "1", optional = true }
rand = { version = "0.8", optional = true }
serde = { version = "1.0", default-features = false, features = ["derive"], optional = true }
serde_json = { version = "1", features = ["raw_value"], optional = true }
parking_lot = { version = "0.11", optional = true }
tokio = { version = "1.8", features = ["rt"], optional = true }
default = []
http-helpers = ["hyper", "futures-util", "jsonrpsee-types"]
	"thiserror",
	"futures-channel",
	"futures-util",
	"jsonrpsee-types",
	"rustc-hash",
	"serde",
	"serde_json",
	"tokio",
David's avatar
David committed
client = ["jsonrpsee-types"]
[dev-dependencies]
serde_json = "1.0"
tokio = { version = "1.8", features = ["macros", "rt"] }
jsonrpsee = { path = "../jsonrpsee", features = ["server", "macros"] }