[package] name = "rudis-http" description = "A minial Redis server with HTTP interface" version = "0.2.0" edition = "2021" authors = ["Lorenzo Cao "] readme = "README.md" repository = "https://github.com/lorenzoc25/rudis" license = "MIT" keywords = ["redis", "http", "server"] categories = ["database", "network-programming", "http", "server"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] tokio = { version = "1.13.0", features = ["full"] } bytes = "1" httparse = "1" crossbeam-utils = "0.8" clap = { version = "4.2.7", features = ["derive"] } serde_json = "1.0.96"