-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 869 Bytes
/
Cargo.toml
File metadata and controls
29 lines (25 loc) · 869 Bytes
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
[package]
name = "flagpole"
version = "0.1.0"
edition = "2024"
rust-version = "1.85"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
http = "0.2"
serde = { version = "1.0", features = ["serde_derive"] }
serde_json = "1.0"
tokio = { version = "1", features = ["full"] }
axum = { version = "0.6.18", features = ["headers", "http1", "json", "tokio", "query"] }
log = "0.4"
env_logger = { version = "0.11.8", optional = true }
chrono = { version = "0.4", optional = true }
clap = { version = "4.5.53", features = ["color", "derive", "help", "usage", "std", "env"] }
redis = { version = "0.25.4", features = [ "ahash", "aio", "tokio-comp" ] }
sha2 = "0.10.9"
[dev-dependencies]
tower = "0.4"
[features]
default = ["logging"]
logging = ["dep:env_logger"]
json-logging = ["dep:chrono", "logging"]
redis = []