2024-10-30 09:47:31 +08:00
|
|
|
[package]
|
|
|
|
name = "manager"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-10-31 15:12:26 +08:00
|
|
|
rtsa_log = { path = "../crates/rtsa_log" }
|
|
|
|
rtsa_db = { path = "../crates/rtsa_db" }
|
2024-11-07 18:06:42 +08:00
|
|
|
rtsa_dto = { path = "../crates/rtsa_dto" }
|
|
|
|
|
|
|
|
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
|
2024-10-30 09:47:31 +08:00
|
|
|
serde = { workspace = true }
|
2024-11-07 18:06:42 +08:00
|
|
|
serde_json = { workspace = true }
|
2024-10-30 09:47:31 +08:00
|
|
|
config = { workspace = true }
|
|
|
|
clap = { workspace = true, features = ["derive"] }
|
|
|
|
enum_dispatch = { workspace = true }
|
|
|
|
anyhow = { workspace = true }
|
2024-11-07 18:06:42 +08:00
|
|
|
thiserror = { workspace = true }
|
|
|
|
chrono = { version = "0.4.38", features = ["serde"] }
|
|
|
|
axum = "0.7.5"
|
|
|
|
axum-extra = { version = "0.9.3", features = ["typed-header"] }
|
|
|
|
jsonwebtoken = "9.3.0"
|
|
|
|
tower-http = { version = "0.6.0", features = ["cors"] }
|
|
|
|
async-graphql = { version = "7.0.7", features = ["chrono", "dataloader"] }
|
|
|
|
async-graphql-axum = "7.0.6"
|
|
|
|
base64 = "0.22.1"
|
|
|
|
sysinfo = "0.31.3"
|
|
|
|
reqwest = { version = "0.12.7", default-features = false, features = ["rustls-tls", "json"] }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
sqlx = { workspace = true, features = [
|
|
|
|
"runtime-tokio",
|
|
|
|
"macros",
|
|
|
|
"chrono",
|
|
|
|
"json",
|
|
|
|
"derive",
|
|
|
|
"postgres",
|
|
|
|
"uuid",
|
|
|
|
] }
|