34 lines
752 B
TOML
34 lines
752 B
TOML
[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"] }
|