mtp/client/Cargo.toml
Alex Emmet a6dd73a41f
Some checks failed
CI / checks (push) Failing after 1m50s
[add] ping jitter, receiver backpressure, stream frame limits
2026-07-14 01:55:31 +02:00

23 lines
745 B
TOML

[package]
name = "mtp-client"
version = "0.1.0"
edition = "2024"
[dependencies]
mtp-common = { version = "0.1.0", path = "../common" }
mtp-codec = { version = "0.1.0", path = "../codec" }
mtp-transport = { version = "0.1.0", path = "../transport" }
mtp-crypto = { version = "0.1.0", path = "../crypto", optional = true }
rand = "0.8"
tokio = { version = "1", features = ["rt", "sync", "time"] }
tracing = "0.1"
[dev-dependencies]
mtp-host = { version = "0.1.0", path = "../host" }
mtp-transport = { version = "0.1.0", path = "../transport", features = ["host"] }
rcgen = "0.14"
[features]
crypto = ["dep:mtp-crypto", "mtp-codec/crypto"]
# Enables stream-specific convenience exports and configuration.
streaming = ["mtp-transport/streaming"]