2024-05-24 19:58:49 +00:00
|
|
|
[package]
|
|
|
|
name = "backend"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
libc = "0.2.155"
|
|
|
|
tempfile = "3.10.1"
|
2024-05-24 23:16:13 +00:00
|
|
|
axum = "0.7.5"
|
|
|
|
serde = { version = "1.0.202", features = ["derive"] }
|
2024-05-24 19:58:49 +00:00
|
|
|
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"] }
|