1
Fork 0
hare-playground/backend/Cargo.toml

15 lines
403 B
TOML
Raw Normal View History

2024-05-24 19:58:49 +00:00
[package]
name = "backend"
version = "0.1.0"
edition = "2021"
[dependencies]
axum = "0.7.5"
libc = "0.2.155"
serde = { version = "1.0.202", features = ["derive"] }
tempfile = "3.10.1"
tokio = { version = "1.37.0", features = ["rt-multi-thread"] }
2024-05-24 22:07:10 +00:00
tower-http = { version = "0.5.2", features = ["trace", "cors"] }
2024-05-24 19:58:49 +00:00
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }