# 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" name = "jsonrpc-reactor" version = "0.1.2" authors = ["Victor Lopez "] description = "JSON-RPC 2.0 Rust implementation with tokio backend." readme = "README.md" keywords = ["jsonrpc"] license = "MIT/Apache-2.0" repository = "https://github.com/codx-dev/jsonrpc-reactor" [dependencies.serde] version = "1.0" features = [ "alloc", "derive", ] default-features = false [dependencies.serde_json] version = "1.0" features = ["alloc"] default-features = false [dependencies.tokio] version = "1.20" features = [ "rt", "sync", "time", ] optional = true [features] default = [ "reactor", "std", "serde/default", "serde_json/default", ] reactor = [ "std", "tokio", ] std = [ "serde/std", "serde_json/std", ]