matter-cert 0.2.0

Matter protocol certificate parsing and chain validation.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.88"
name = "matter-cert"
version = "0.2.0"
authors = ["matter-rust contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Matter protocol certificate parsing and chain validation."
homepage = "https://github.com/phunapps/matter-rust"
readme = "README.md"
keywords = [
    "matter",
    "certificate",
    "x509",
    "iot",
]
categories = [
    "cryptography",
    "parser-implementations",
]
license = "Apache-2.0"
repository = "https://github.com/phunapps/matter-rust"

[features]
test-support = []

[lib]
name = "matter_cert"
path = "src/lib.rs"

[[test]]
name = "certificates"
path = "tests/certificates.rs"

[[test]]
name = "chain"
path = "tests/chain.rs"

[[test]]
name = "operational_certs"
path = "tests/operational_certs.rs"

[dependencies.bitflags]
version = "2"

[dependencies.der]
version = "0.7"
features = [
    "oid",
    "alloc",
]
default-features = false

[dependencies.matter-codec]
version = "0.2.0"

[dependencies.ring]
version = "0.17"

[dependencies.thiserror]
version = "2"

[dev-dependencies.proptest]
version = "1"

[dev-dependencies.serde]
version = "1"
features = ["derive"]

[dev-dependencies.toml]
version = "1.1"

[lints.clippy]
expect_used = "warn"
missing_const_for_fn = "allow"
missing_errors_doc = "warn"
missing_panics_doc = "warn"
missing_safety_doc = "warn"
module_name_repetitions = "allow"
must_use_candidate = "allow"
undocumented_unsafe_blocks = "warn"
unwrap_used = "warn"

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
missing_docs = "warn"
unreachable_pub = "warn"
unsafe_op_in_unsafe_fn = "warn"

[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1