mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 17:24:15 +01:00
36 lines
868 B
TOML
36 lines
868 B
TOML
|
[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 }
|
||
|
rand = { workspace = true }
|
||
|
redis = { version = "0.23.3", features = [
|
||
|
"tokio-comp",
|
||
|
"cluster",
|
||
|
"cluster-async",
|
||
|
] }
|
||
|
serde = { workspace = true }
|
||
|
serde_json = { workspace = true }
|
||
|
thiserror = { workspace = true }
|
||
|
|
||
|
[lints]
|
||
|
workspace = true
|
||
|
|
||
|
[dev-dependencies]
|
||
|
assert-json-diff = { workspace = true }
|
||
|
once_cell = "1.18.0"
|
||
|
reqwest = { workspace = true }
|
||
|
|