Files
helios-server-rs/Cargo.toml

33 lines
991 B
TOML
Raw Normal View History

2023-10-14 10:49:05 +08:00
[package]
name = "helios-server-rs"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2025-06-08 20:42:24 +08:00
[workspace]
2025-06-08 21:11:45 +08:00
members = [".", "migration"]
2023-10-14 10:49:05 +08:00
[dependencies]
2025-06-08 20:42:24 +08:00
axum = { version = "0.8" }
2025-06-08 21:11:45 +08:00
axum-extra = {version = "0.10", features = ["typed-header", "typed-routing"] }
2025-06-08 20:42:24 +08:00
axum-macros = "0.5"
sea-orm = { version = "1.1.12", features = [
"sqlx-postgres",
"runtime-tokio-rustls",
"macros",
"chrono",
] }
serde = { version = "1", features = ["derive"] }
2025-06-08 21:11:45 +08:00
serde_json = "1.0.140"
2025-06-08 20:42:24 +08:00
tokio = { version = "1.0", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
dotenvy = "0.15.7"
toml = "0.8.22"
2025-06-08 21:11:45 +08:00
clap = { version = "4.0", features = ["derive"] }
pbkdf2 = { version = "0.12", features = ["simple"] }
rand_core = { version = "0.9.3", features = ["std"] }
jsonwebtoken = "9"
once_cell = "1.21.3"
tower-http = {version= "0.6", features = ["trace", "cors"] }
tower = "0.5.2"