2024-05-07 22:13:01 +02:00
|
|
|
[package]
|
|
|
|
name = "feature-flags"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = { workspace = true }
|
|
|
|
async-trait = { workspace = true }
|
|
|
|
axum = { workspace = true }
|
|
|
|
axum-client-ip = { workspace = true }
|
|
|
|
envconfig = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
|
|
|
tracing = { workspace = true }
|
|
|
|
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|
|
|
|
bytes = { workspace = true }
|
2024-07-24 17:40:09 +02:00
|
|
|
once_cell = "1.18.0"
|
2024-05-07 22:13:01 +02:00
|
|
|
rand = { workspace = true }
|
|
|
|
redis = { version = "0.23.3", features = [
|
|
|
|
"tokio-comp",
|
|
|
|
"cluster",
|
|
|
|
"cluster-async",
|
|
|
|
] }
|
|
|
|
serde = { workspace = true }
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
thiserror = { workspace = true }
|
2024-05-29 15:32:41 +02:00
|
|
|
serde-pickle = { version = "1.1.1"}
|
2024-06-10 11:12:32 +02:00
|
|
|
sha1 = "0.10.6"
|
2024-06-10 11:45:23 +02:00
|
|
|
regex = "1.10.4"
|
2024-08-27 21:58:20 +02:00
|
|
|
maxminddb = "0.17"
|
2024-07-24 17:40:09 +02:00
|
|
|
sqlx = { workspace = true }
|
|
|
|
uuid = { workspace = true }
|
2024-05-07 22:13:01 +02:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
assert-json-diff = { workspace = true }
|
|
|
|
reqwest = { workspace = true }
|
|
|
|
|