-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
38 lines (34 loc) · 942 Bytes
/
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
[package]
name = "enge-sidecar-redis"
version = "0.1.0"
authors = ["[email protected] <Rogerio Ferreira>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.6", features = ["macros"] }
serde-redis = "0.10.0"
config="0.11.0"
log="0.4.14"
redis={ version = "0.20.0", default-features = false, features = ["cluster", "connection-manager", "tokio-comp"] }
async-trait = "0.1.50"
actix-web = "4.0.0-beta.6"
lazy_static = "1.4.0"
mobc-redis-cluster = "0.1.1"
serde_derive = "1.0.125"
serde_json = "1.0.64"
url = "2.2.2"
redis_cluster_async = "0.6.0"
mobc = "0.7.2"
[dev-dependencies]
futures-util = "0.3.2"
[profile.release]
opt-level = 3
debug = true
debug-assertions = false
overflow-checks = false
lto = false
panic = 'unwind'
incremental = false
codegen-units = 16
rpath = false