This commit is contained in:
2025-10-23 00:22:43 +08:00
parent 0881d3fbcb
commit d67ab615ce
34 changed files with 9442 additions and 1 deletions

30
Cargo.toml Normal file
View File

@ -0,0 +1,30 @@
[package]
name = "qiandao"
version = "0.1.0"
edition = "2021"
default-run = "qiandao"
[dependencies]
axum = { version = "0.6", features = ["multipart"] }
tokio = { version = "1.0", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sqlx = { version = "0.6", features = ["runtime-tokio-rustls", "mysql", "chrono", "uuid"] }
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.0", features = ["v4", "serde"] }
tower-http = { version = "0.4", features = ["cors", "trace", "fs"] }
dotenv = "0.15"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
bcrypt = "0.14"
jsonwebtoken = "8.3"
calamine = "0.22"
xlsxwriter = "0.6"
rust_xlsxwriter = "0.78.0"
tower = { version = "0.4", features = ["util"] }
bytes = "1.0"
futures = "0.3"
[dependencies.sea-orm]
version = "0.11"
features = ["sqlx-mysql", "runtime-tokio-rustls", "macros"]