mtp/host/Cargo.toml
Alex Emmet c148314742
Some checks failed
CI / checks (push) Failing after 1m38s
[WIP] Pings, Pongs & Streams
2026-07-14 00:14:53 +02:00

18 lines
678 B
TOML

[package]
name = "mtp-host"
version = "0.1.0"
edition = "2024"
[dependencies]
mtp-common = { version = "0.1.0", path = "../common" }
mtp-codec = { version = "0.1.0", path = "../codec", features = ["registry"] }
mtp-transport = { version = "0.1.0", path = "../transport", features = ["host"] }
mtp-crypto = { version = "0.1.0", path = "../crypto", optional = true }
rand = "0.8"
tokio = { version = "1", features = ["time"] }
[features]
crypto = ["dep:mtp-crypto", "mtp-codec/crypto"]
# Stream mode is optional at the facade boundary. The underlying transport
# remains framed/stream based so the default API stays backwards compatible.
streaming = ["mtp-transport/streaming"]