29 lines
1.1 KiB
TOML
29 lines
1.1 KiB
TOML
[package]
|
|
name = "lxc-stream-server"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
axum = { version = "0.8", features = ["ws", "json"] }
|
|
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"] }
|
|
futures = "0.3"
|
|
futures-channel = "0.3"
|
|
hmac = "0.12"
|
|
http = "1"
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
sha2 = "0.10"
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-postgres = { version = "0.7", features = ["with-serde_json-1"] }
|
|
toml = "0.8"
|
|
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"] }
|