Some checks failed
CI / rustfmt (push) Successful in 17s
CI / wasm build (push) Successful in 1m16s
CI / clippy (push) Successful in 1m28s
CI / test (push) Successful in 1m48s
CI / example (push) Successful in 1m31s
CI / duplicate code (push) Failing after 33s
CI / web client (push) Failing after 34s
CI / cargo-machete (push) Successful in 1m18s
CI / cargo-deny (push) Failing after 3m2s
14 lines
363 B
TOML
14 lines
363 B
TOML
[package]
|
|
name = "mtp-host"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
mtp-common = { path = "../common" }
|
|
mtp-codec = { path = "../codec", features = ["registry"] }
|
|
mtp-transport = { path = "../transport", features = ["host"] }
|
|
mtp-crypto = { path = "../crypto", optional = true }
|
|
rand = "0.8"
|
|
|
|
[features]
|
|
crypto = ["dep:mtp-crypto", "mtp-codec/crypto"]
|