Cargo.toml 1.29 KiB
Newer Older
[package]
name = "jsonrpsee-utils"
David's avatar
David committed
version = "0.3.0"
authors = ["Parity Technologies <[email protected]>"]
description = "Utilities for jsonrpsee"
edition = "2018"
license = "MIT"

[dependencies]
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 }
David's avatar
David committed
jsonrpsee-types = { path = "../types", version = "0.3.0", optional = true }
log = { version = "0.4", 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 }
default = []
http-helpers = ["hyper", "futures-util", "jsonrpsee-types"]
	"thiserror",
	"futures-channel",
	"futures-util",
	"jsonrpsee-types",
	"rustc-hash",
	"serde",
	"serde_json",
	"log",
	"parking_lot",
	"rand"
]
[dev-dependencies]
serde_json = "1.0"
tokio = { version = "1", features = ["macros"] }