2024-12-22 20:56:52 -03:00
|
|
|
[package]
|
|
|
|
name = "gb-core"
|
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]
|
2025-03-08 12:10:13 -03:00
|
|
|
tokio-tungstenite = { workspace = true }
|
2024-12-25 16:25:09 -03:00
|
|
|
async-trait= { workspace = true }
|
|
|
|
serde= { workspace = true }
|
|
|
|
uuid= { workspace = true }
|
|
|
|
tokio= { workspace = true }
|
|
|
|
thiserror= { workspace = true }
|
|
|
|
chrono= { workspace = true }
|
|
|
|
tracing= { workspace = true }
|
2024-12-23 00:54:50 -03:00
|
|
|
axum = { version = "0.7", features = ["json"] }
|
|
|
|
serde_json = "1.0"
|
2025-03-08 12:10:13 -03:00
|
|
|
sqlx = { workspace = true }
|
|
|
|
redis = { workspace = true }
|
2025-03-08 18:11:09 -03:00
|
|
|
minio = { workspace = true }
|
|
|
|
zitadel = { workspace = true }
|
|
|
|
rdkafka = { workspace = true }
|
|
|
|
tonic = { workspace = true }
|
|
|
|
actix-web ={ workspace = true }
|
|
|
|
anyhow = { workspace = true }
|
2025-03-08 21:51:28 -03:00
|
|
|
jsonwebtoken = { workspace = true }
|
|
|
|
lettre= { workspace = true }
|
2024-12-22 20:56:52 -03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-12-25 16:25:09 -03:00
|
|
|
mockall= { workspace = true }
|
|
|
|
rstest= { workspace = true }
|
2025-03-08 12:10:13 -03:00
|
|
|
tokio-test = { workspace = true }
|