mtp/codec/Cargo.toml
2026-06-20 15:25:36 +02:00

19 lines
471 B
TOML

[package]
name = "mtp-codec"
version = "0.1.0"
edition = "2024"
[dependencies]
mtp-type-map = { path = "../type-map" }
mtp-common = { path = "../common" }
mtp-crypto = { path = "../crypto", optional = true }
base64 = "*"
byteorder = "*"
rand = { version = "*", features = ["std", "std_rng"] }
[features]
default = []
# Enables the Registry module and versioned codec wrapper
registry = []
# Enables EncryptedContainer support via mtp-crypto
crypto = ["dep:mtp-crypto"]