26 lines
712 B
TOML
26 lines
712 B
TOML
[package]
|
|
name = "realtime"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
common = { workspace = true }
|
|
auth = { workspace = true }
|
|
tokio = { workspace = true }
|
|
axum = { workspace = true, features = ["ws"] }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
sqlx = { workspace = true }
|
|
tracing = { workspace = true }
|
|
futures = { workspace = true }
|
|
uuid = { workspace = true }
|
|
tokio-postgres = { version = "0.7", features = ["array-impls", "with-uuid-1", "with-serde_json-1", "with-chrono-0_4"] }
|
|
postgres-types = "0.2"
|
|
postgres-protocol = "0.6"
|
|
anyhow = { workspace = true }
|
|
bytes = "1.0"
|
|
jsonwebtoken = { workspace = true }
|
|
chrono.workspace = true
|
|
dashmap = "5.5"
|
|
redis = { workspace = true }
|