Initial commit

This commit is contained in:
2024-12-29 12:20:01 +01:00
commit 9ebe9b55bd
87 changed files with 21545 additions and 0 deletions

33
backend/Cargo.toml Normal file
View File

@@ -0,0 +1,33 @@
[package]
name = "treasure_chest"
version = "0.1.0"
edition = "2024"
[workspace]
members = [".", "entity", "migration"]
[dependencies]
axum = "0.8.7"
argon2 = "0.5.3"
base64 = "0.22.1"
chacha20poly1305 = "0.10.1"
chrono = "0.4.42"
config = "0.15.19"
entity = { path = "entity" }
env_logger = "0.11.8"
futures = "0.3"
log = "0.4.28"
migration = { path = "migration" }
regex = "1.12.2"
sea-orm = { version = "1.1.19", features = [
"macros",
"runtime-tokio-rustls",
"sqlx-mysql",
"with-chrono",
"with-uuid",
] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7.17", features = ["io"] }
uuid = { version = "1.18.1", features = ["v4"] }