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]
|
2024-12-23 00:20:59 -03:00
|
|
|
tokio-tungstenite = "0.18"
|
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 }
|
|
|
|
sqlx= { workspace = true }
|
|
|
|
redis= { workspace = true }
|
|
|
|
tracing= { workspace = true }
|
2024-12-23 00:54:50 -03:00
|
|
|
axum = { version = "0.7", features = ["json"] }
|
|
|
|
serde_json = "1.0"
|
2024-12-22 20:56:52 -03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-12-25 16:25:09 -03:00
|
|
|
mockall= { workspace = true }
|
|
|
|
rstest= { workspace = true }
|
2024-12-22 20:56:52 -03:00
|
|
|
tokio-test = "0.4"
|