-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
Cargo.toml
51 lines (47 loc) · 1.07 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[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 <valerian@valeriansaliou.name>"]
[[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