mtp/host/Cargo.toml
Alois 88f8f93d89
Some checks failed
CI / rustfmt (push) Successful in 3m5s
CI / wasm build (push) Failing after 3m44s
CI / clippy (push) Failing after 3m44s
CI / test (push) Failing after 3m44s
CI / web client (push) Has been cancelled
CI / duplicate code (push) Has been cancelled
CI / example (push) Has been cancelled
CI / cargo-machete (push) Has been cancelled
CI / cargo-deny (push) Has been cancelled
(fix): some ci stuff
2026-06-28 17:31:04 +02:00

15 lines
486 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"]