mtp/client/Cargo.toml
Alex Emmet 6ef1293603
Some checks failed
CI / rustfmt (push) Failing after 17s
CI / wasm build (push) Failing after 1m13s
CI / clippy (push) Failing after 1m17s
CI / example (push) Failing after 1m30s
CI / test (push) Successful in 1m50s
CI / duplicate code (push) Failing after 31s
CI / web client (push) Failing after 31s
CI / cargo-machete (push) Successful in 1m15s
CI / cargo-deny (push) Failing after 2m26s
[Add] Ease of use functions
2026-06-28 03:26:07 +02:00

15 lines
366 B
TOML

[package]
name = "mtp-client"
version = "0.1.0"
edition = "2024"
[dependencies]
mtp-common = { path = "../common" }
mtp-codec = { path = "../codec" }
mtp-transport = { path = "../transport" }
mtp-crypto = { path = "../crypto", optional = true }
rand = "0.8"
tokio = { version = "1", features = ["time"] }
[features]
crypto = ["dep:mtp-crypto", "mtp-codec/crypto"]