[package] name = "jupiter-rs" version = "0.0.2" authors = ["scireum GmbH "] edition = "2018" license = "MIT" description = "Jupiter is a library for providing high-throughput ultra low latency services via the RESP protocol as defined by Redis." readme = "../README.md" repository = "https://github.com/scireum/jupiter" categories = ["caching", "database-implementations", "network-programming"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] tokio = { version = "0.2", features = ["full"] } log = "0.4.11" bytes = "0.5.6" simplelog = "0.8.0" anyhow = "1.0.32" num-traits = "0.2.12" num-derive = "0.3.2" yaml-rust = "0.4.4" linked-hash-map = "0.5.3" encoding = "0.2.33" arc-swap = "0.4.7" lazy_static = "1.4.0" regex = "1" memcmp = "0.0.6" num_cpus = "1.13.0" [dev-dependencies] tokio-test = "0.2.1" criterion = "0.3" redis = "0.17.0" itertools = "0.9.0" [[bench]] name = "benches" harness = false