ponguito-server/Cargo.toml

22 lines
479 B
TOML
Raw Normal View History

2024-01-06 15:46:15 +00:00
[package]
2024-01-09 22:26:43 +00:00
name = "ponguito-server"
2024-01-06 15:46:15 +00:00
version = "0.1.0"
edition = "2021"
2024-01-09 22:26:43 +00:00
# [lints.rust]
# missing_docs = "warn"
# [lints.clippy]
# missing_docs_in_private_items = "warn"
# unwrap_in_result = "warn"
# unwrap_used = "warn"
# nursery = "warn"
2024-01-06 15:46:15 +00:00
[dependencies]
2024-01-09 22:26:43 +00:00
axum = "0.7.3"
axum-client-ip = "0.5.0"
chrono = { version = "0.4.31", features = ["serde"] }
serde = { version = "1.0.195", features = ["derive"] }
2024-01-06 15:46:15 +00:00
serde_json = "1.0.111"
2024-01-09 22:26:43 +00:00
tokio = { version = "1.35.1", features = ["full"] }