mtp/codec/Cargo.toml
Alois 88f8f93d89
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
(fix): some ci stuff
2026-06-28 17:31:04 +02:00

17 lines
472 B
TOML

[package]
name = "mtp-codec"
version = "0.1.0"
edition = "2024"
[dependencies]
mtp-type-map = { version = "0.1.0", path = "../type-map" }
mtp-common = { version = "0.1.0", path = "../common" }
mtp-crypto = { version = "0.1.0", path = "../crypto", optional = true }
base64 = "0.22"
byteorder = "1.5"
rand = { version = "0.8", features = ["std", "std_rng"] }
[features]
default = []
registry = ["mtp-type-map/registry"]
crypto = ["dep:mtp-crypto", "mtp-crypto/mlkem-tls"]