[dependencies.serde]
features = ["derive"]
version = "1.0.210"
[dependencies.serde_json]
version = "1.0.145"
[lib]
name = "jsonrpcmsg"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["network-programming"]
description = "A Rust library to serialize (encode) and deserialize (parse) JSON-RPC messages."
edition = "2024"
exclude = [".*", "/target", "/release"]
keywords = ["json", "networking", "rpc", "json-rpc"]
license = "MIT OR Apache-2.0"
name = "jsonrpcmsg"
readme = "README.md"
repository = "https://github.com/fruafr/rust-jsonrpcmsg"
version = "0.1.1"
[[test]]
name = "batch_tests"
path = "tests/batch_tests.rs"
[[test]]
name = "error_tests"
path = "tests/error_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "request_tests"
path = "tests/request_tests.rs"
[[test]]
name = "response_tests"
path = "tests/response_tests.rs"
[[test]]
name = "serialize_deserialize_tests"
path = "tests/serialize_deserialize_tests.rs"
[[test]]
name = "version_tests"
path = "tests/version_tests.rs"