(fix): some ci stuff
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
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
This commit is contained in:
parent
6b9bbb6ebf
commit
88f8f93d89
10 changed files with 83 additions and 121 deletions
14
Cargo.toml
14
Cargo.toml
|
|
@ -46,18 +46,18 @@ edition = "2024"
|
|||
|
||||
[dependencies]
|
||||
# --- always-on core ---
|
||||
mtp-common = { path = "common" }
|
||||
mtp-type-map = { path = "type-map" }
|
||||
mtp-codec = { path = "codec" }
|
||||
mtp-transport = { path = "transport" }
|
||||
mtp-common = { version = "0.1.0", path = "common" }
|
||||
mtp-type-map = { version = "0.1.0", path = "type-map" }
|
||||
mtp-codec = { version = "0.1.0", path = "codec" }
|
||||
mtp-transport = { version = "0.1.0", path = "transport" }
|
||||
|
||||
# --- optional, behind features ---
|
||||
mtp-crypto = { path = "crypto", optional = true, features = [
|
||||
mtp-crypto = { version = "0.1.0", path = "crypto", optional = true, features = [
|
||||
"serde",
|
||||
"mlkem-tls",
|
||||
] }
|
||||
mtp-host = { path = "host", optional = true }
|
||||
mtp-client = { path = "client", optional = true }
|
||||
mtp-host = { version = "0.1.0", path = "host", optional = true }
|
||||
mtp-client = { version = "0.1.0", path = "client", optional = true }
|
||||
|
||||
[features]
|
||||
default = []
|
||||
|
|
|
|||
Loading…
Reference in a new issue