Some checks failed
CI / rustfmt (push) Failing after 23s
CI / clippy (push) Successful in 1m51s
CI / wasm build (push) Successful in 1m33s
CI / test (push) Successful in 2m21s
CI / example usage (push) Successful in 1m42s
CI / duplicate code (push) Successful in 11s
CI / cargo-machete (push) Successful in 1m38s
CI / web client (push) Failing after 24s
CI / cargo-deny (push) Failing after 3m23s
(feat): add code quality control (fix): ci rewritten for forgejo (qol): move docs to dedicated docs/ folder
15 lines
375 B
TOML
15 lines
375 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"
|
|
log = "0.4"
|
|
|
|
[features]
|
|
crypto = ["dep:mtp-crypto", "mtp-codec/crypto"]
|