Init with backend
This commit is contained in:
commit
ec8799c7fc
6 changed files with 2051 additions and 0 deletions
15
backend/Cargo.toml
Normal file
15
backend/Cargo.toml
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
[package]
|
||||
name = "backend"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
async-trait = "0.1.89"
|
||||
axum = { version = "0.8.6", features = ["json"] }
|
||||
serde = "1.0.228"
|
||||
serde_json = "1.0.145"
|
||||
sqlx = { version = "0.8.6", features = ["postgres", "runtime-tokio"] }
|
||||
thiserror = "2.0.17"
|
||||
tokio = { version = "1.48.0", features = ["macros", "rt-multi-thread"] }
|
||||
tracing = "0.1.41"
|
||||
tracing-subscriber = "0.3.20"
|
||||
Loading…
Add table
Add a link
Reference in a new issue