[package] name = "acrudjson" version = "0.1.2" description = "Modern Rustlang with async support for CRUD operation based on JSONRPC specification." authors = ["Sheldon Knuth "] repository = "https://github.com/sheruost/acrudjson" license = "Apache-2.0/MIT" readme = "README.md" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] bigdecimal = "0.4" crc32fast = "1" log = "0.4" thiserror = "1" serde = { version = "1", features = ["derive"] } serde_json = "1" sled = "0.34.7" zerocopy = "0.7" [dev-dependencies] anyhow = "1" env_logger = "0.10" tokio = { version = "1", features = ["macros", "rt-multi-thread", "net", "time"] } [[example]] name = "server" path = "examples/server.rs" [[example]] name = "client" path = "examples/client.rs"