Files
secret-santa/Cargo.toml
2024-11-23 15:20:22 +01:00

17 lines
501 B
TOML

[package]
name = "sesan"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = { version = "0.7.8", features = ["http1", "json", "tokio"] }
tokio = { version = "1.41", features = ["macros", "rt-multi-thread"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
serde = { version = "1.0", features = ["derive"] }
once_cell = "1.20"
rand = "0.8.5"
log = "0.4"
env_logger = "0.11"