[package] name = "bloom-server" version = "1.35.2" description = "HTTP REST API caching middleware, to be used between load balancers and REST API workers." readme = "README.md" license = "MPL-2.0" edition = "2018" homepage = "https://github.com/valeriansaliou/bloom" repository = "https://github.com/valeriansaliou/bloom.git" keywords = ["proxy", "http", "api", "rest", "cache"] categories = ["caching", "web-programming"] authors = ["Valerian Saliou "] [[bin]] name = "bloom" path = "src/main.rs" doc = false [dependencies] log = "0.4" toml = "0.5" clap = { version = "3.2", features = ["std", "cargo"] } lazy_static = "1.4" serde = "1.0" serde_derive = "1.0" futures = "0.1" futures-cpupool = "0.1" httparse = "1.3" hyper = "0.11" tokio-core = "0.1" r2d2 = "0.8" r2d2_redis = "0.11" redis = "0.12" farmhash = "1.1" brotli = "3.3" rand = "0.7" unicase = "2.6" regex = "1.8" itertools = "0.10" [profile.dev] opt-level = 0 debug = true debug-assertions = true [profile.release] opt-level = "s" lto = true debug = false debug-assertions = false strip = true