mtp/host/Cargo.toml
Alex Emmet e6bcce6b2e
Some checks failed
CI / checks (push) Failing after 3m46s
General Upgrade, NEW: WebServers, Better Docs
2026-07-18 04:38:24 +02:00

19 lines
580 B
TOML

[package]
name = "mtp-host"
version = "0.2.0"
edition = "2024"
[dependencies]
mtp-common = { version = "0.2.0", path = "../common" }
mtp-codec = { version = "0.2.0", path = "../codec", features = ["registry"] }
mtp-transport = { version = "0.2.0", path = "../transport", features = ["host"] }
mtp-crypto = { version = "0.2.0", path = "../crypto", optional = true }
rand = "0.8"
tokio = { version = "1", features = ["macros", "rt", "time", "sync"] }
tracing = "0.1"
[features]
crypto = ["dep:mtp-crypto", "mtp-codec/crypto"]
pipes = ["mtp-common/pipes", "mtp-transport/pipes"]