First version
This commit is contained in:
16
backend/Cargo.toml
Normal file
16
backend/Cargo.toml
Normal file
@@ -0,0 +1,16 @@
|
||||
[package]
|
||||
name = "backend"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
axum = { version = "0.8.7" }
|
||||
tokio = { version = "1.48.0", features = ["rt", "net"] }
|
||||
tracing = { version = "0.1.43" }
|
||||
tracing-subscriber = { version = "0.3.22", features = ["json"] }
|
||||
|
||||
sqlx = { version = "0.8.6", features = ["runtime-tokio", "postgres", "sqlite"] }
|
||||
serde_json = "1.0.145"
|
||||
serde = { version = "1.0.228", features = ["derive"] }
|
||||
tower = "0.5.2"
|
||||
tower-http = { version = "0.6.7", features = ["cors"] }
|
||||
Reference in New Issue
Block a user