[package] name = "mls-rs-identity-x509" version = "0.20.0" edition = "2021" description = "X509 Identity utilities for mls-rs" homepage = "https://github.com/awslabs/mls-rs" repository = "https://github.com/awslabs/mls-rs" keywords = ["mls", "mls-rs"] license = "Apache-2.0 OR MIT" [features] default = ["std"] std = ["mls-rs-core/std", "dep:thiserror"] [dependencies] mls-rs-core = { path = "../mls-rs-core", default-features = false, features = ["x509"], version = "0.26.0" } maybe-async = "0.2.10" thiserror = { version = "2", optional = true } # Async mode dependencies [target.'cfg(mls_build_async)'.dependencies] async-trait = "0.1.74" [dev-dependencies] mockall = "0.14" assert_matches = "1" rand = "0.9" [target.'cfg(target_arch = "wasm32")'.dev-dependencies] wasm-bindgen-test = { version = "0.3" } getrandom = { version = "0.3", features = ["wasm_js"] } getrandom_0_2 = { package = "getrandom", version = "0.2", features = ["js"] } [target.'cfg(target_arch = "wasm32")'.dependencies] wasm-bindgen = { version = "0.2" } [lints.rust] unexpected_cfgs = { level = "warn", check-cfg = ['cfg(mls_build_async)'] }