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