21 lines
401 B
TOML
21 lines
401 B
TOML
[package]
|
|
name = "ds-stream"
|
|
version = "0.9.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "Universal bitstream streaming — any input to any output"
|
|
|
|
[[bin]]
|
|
name = "ds-stream-relay"
|
|
path = "src/main.rs"
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-tungstenite = "0.24"
|
|
futures-util = "0.3"
|
|
serde_json = "1"
|
|
|
|
[dev-dependencies]
|