[package]
edition = "2024"
rust-version = "1.85.0"
name = "jsonrpseex-types"
version = "0.25.2"
authors = [
"Parity Technologies <admin@parity.io>",
"Pierre Krieger <pierre.krieger1708@gmail.com>",
]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "JSON-RPC v2 specific types"
homepage = "https://www.parity.io/"
documentation = "https://docs.rs/jsonrpsee"
readme = "README.md"
keywords = [
"jsonrpc",
"json",
"http",
"websocket",
"WASM",
]
license = "MIT"
repository = "https://github.com/paritytech/jsonrpsee"
[lib]
name = "jsonrpsee_types"
path = "src/lib.rs"
[dependencies.http]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
default-features = false
[dependencies.serde_json]
version = "1"
features = [
"alloc",
"raw_value",
]
default-features = false
[dependencies.thiserror]
version = "2"
[lints.clippy.manual_async_fn]
level = "allow"
priority = -1
[lints.rust.missing_copy_implementations]
level = "warn"
priority = -1
[lints.rust.missing_debug_implementations]
level = "warn"
priority = -1
[lints.rust.missing_docs]
level = "warn"
priority = -1
[lints.rust.rust_2024_compatibility]
level = "warn"
priority = -1