33 lines
1.3 KiB
TOML
33 lines
1.3 KiB
TOML
[package]
|
|
name = "lxc-stream-server"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
axum = { version = "0.8", features = ["ws", "json"] }
|
|
async-trait = "0.1"
|
|
base64 = "0.22"
|
|
# Patched local copy of the published blivedm_rs crate. The patch preserves
|
|
# the upstream raw payload so the application can retain UID, price and event
|
|
# identifiers for atomic accounting and gift de-duplication.
|
|
blivedm = { path = "../../vendor/blivedm", default-features = false }
|
|
chrono = { version = "0.4", default-features = false, features = ["clock", "serde"] }
|
|
chacha20poly1305 = "0.10"
|
|
deadpool-postgres = "0.14"
|
|
futures-channel = "0.3"
|
|
rand = "0.9"
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
sha2 = "0.10"
|
|
subtle = "2"
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-postgres = { version = "0.7", features = ["with-serde_json-1", "with-uuid-1", "with-chrono-0_4"] }
|
|
tokio-util = "0.7"
|
|
toml = "0.8"
|
|
totp-rs = { version = "5.7", features = ["gen_secret", "qr", "zeroize"] }
|
|
tower-http = { version = "0.6", features = ["fs"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
|
|
uuid = { version = "1", features = ["v4", "serde"] }
|