# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" rust-version = "1.74.1" name = "jsonrpsee" version = "0.24.7" authors = [ "Parity Technologies ", "Pierre Krieger ", ] build = false publish = true autobins = false autoexamples = false autotests = false autobenches = false description = "JSON-RPC client/server framework" 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" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [package.metadata.playground] all-features = true [lib] name = "jsonrpsee" path = "src/lib.rs" [dependencies.jsonrpsee-client-transport] version = "0.24.7" optional = true [dependencies.jsonrpsee-core] version = "0.24.7" optional = true [dependencies.jsonrpsee-http-client] version = "0.24.7" optional = true [dependencies.jsonrpsee-proc-macros] version = "0.24.7" optional = true [dependencies.jsonrpsee-server] version = "0.24.7" optional = true [dependencies.jsonrpsee-types] version = "0.24.7" optional = true [dependencies.jsonrpsee-wasm-client] version = "0.24.7" optional = true [dependencies.jsonrpsee-ws-client] version = "0.24.7" optional = true [dependencies.tokio] version = "1.23.1" optional = true [dependencies.tracing] version = "0.1.34" optional = true [features] async-client = ["jsonrpsee-core/async-client"] async-wasm-client = ["jsonrpsee-core/async-wasm-client"] client = [ "http-client", "ws-client", "wasm-client", "client-ws-transport-tls", "client-web-transport", "async-client", "async-wasm-client", "client-core", ] client-core = ["jsonrpsee-core/client"] client-web-transport = ["jsonrpsee-client-transport/web"] client-ws-transport-no-tls = ["jsonrpsee-client-transport/ws"] client-ws-transport-tls = [ "jsonrpsee-client-transport/ws", "jsonrpsee-client-transport/tls-rustls-platform-verifier", ] full = [ "client", "server", "macros", ] http-client = [ "jsonrpsee-http-client", "jsonrpsee-types", "jsonrpsee-core/client", ] macros = [ "jsonrpsee-proc-macros", "jsonrpsee-types", "tracing", ] server = [ "jsonrpsee-server", "server-core", "jsonrpsee-types", "tokio", ] server-core = ["jsonrpsee-core/server"] wasm-client = [ "jsonrpsee-wasm-client", "jsonrpsee-types", "jsonrpsee-core/client", ] ws-client = [ "jsonrpsee-ws-client", "jsonrpsee-types", "jsonrpsee-core/client", ]