Source code
Revision control
Copy as Markdown
Other Tools
[package]
name = "mls-rs-codec"
version = "0.7.0"
edition = "2021"
description = "TLS codec and MLS specific encoding used by mls-rs"
keywords = ["mls", "mls-rs"]
license = "Apache-2.0 OR MIT"
[features]
default = ["std", "preallocate"]
preallocate = []
std = ["dep:thiserror"]
[dependencies]
mls-rs-codec-derive = { version = "0.2.0", path = "../mls-rs-codec-derive" }
thiserror = { version = "2", optional = true }
itertools = { version = "0.14.0", default-features = false, features = ["use_alloc"]}
[dev-dependencies]
assert_matches = "1.5.0"
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
wasm-bindgen-test = { version = "0.3" }
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = { version = "0.2" }
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(mls_build_async)'] }