gbserver/gb-api/Cargo.toml

34 lines
1.2 KiB
TOML
Raw Normal View History

2024-12-22 20:56:52 -03:00
[package]
name = "gb-api"
2024-12-25 16:25:09 -03:00
version = { workspace = true }
edition = { workspace = true }
authors = { workspace = true }
license = { workspace = true }
2024-12-22 20:56:52 -03:00
[dependencies]
gb-core = { path = "../gb-core" }
gb-messaging = { path = "../gb-messaging" }
gb-monitoring = { path = "../gb-monitoring" }
2025-02-24 11:40:46 -03:00
gb-file = {path = "../gb-file" }
2024-12-25 17:16:05 -03:00
tokio = { version = "1.0", features = ["full", "macros", "rt-multi-thread"] } # Add these features
2024-12-23 00:54:50 -03:00
axum = { version = "0.7.9", features = ["ws", "multipart", "macros"] }
2024-12-25 16:25:09 -03:00
serde= { workspace = true }
serde_json= { workspace = true }
uuid= { workspace = true }
tracing= { workspace = true }
2024-12-25 17:16:05 -03:00
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
2024-12-25 16:25:09 -03:00
async-trait= { workspace = true }
2024-12-24 09:59:55 -03:00
futures-util = { version = "0.3", features = ["sink"] }
chrono = { workspace = true, features = ["serde"] }
tokio-stream = "0.1.17"
2024-12-25 20:42:38 -03:00
sqlx = { version = "0.7", features = ["runtime-tokio-rustls", "postgres", "chrono", "uuid"] }
redis = { version = "0.23", features = ["tokio-comp"] }
2024-12-25 21:28:16 -03:00
hyper = { version = "1.0", features = ["server"] }
hyper-util = { version = "0.1" }
tower = { workspace = true }
tower-http = { version = "0.5", features = ["cors", "trace"] }
2024-12-22 20:56:52 -03:00
[dev-dependencies]
2024-12-25 16:25:09 -03:00
rstest= { workspace = true }
2024-12-22 20:56:52 -03:00
tokio-test = "0.4"