mtp/codec/Cargo.toml
Alex Emmet 08aa193fd1
Some checks failed
CI / checks (push) Failing after 2m23s
General Upgrade, NEW: WebServers, Better Docs
2026-07-18 03:21:44 +02:00

17 lines
490 B
TOML

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