[package]
edition = "2021"
rust-version = "1.86"
name = "cacrt"
version = "0.1.1"
build = "build.rs"
exclude = [
"/.github",
"/*.txt",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Curated, no_std/no-alloc access to DER-encoded CA root certificates by OpenSSL subject hash"
readme = "README.md"
keywords = [
"ca",
"certificate",
"x509",
"no_std",
"tls",
]
categories = [
"no-std",
"cryptography",
"embedded",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/KarpelesLab/cacrt"
[lib]
name = "cacrt"
path = "src/lib.rs"
[[example]]
name = "cacrt-tool"
path = "examples/cacrt-tool.rs"
[[test]]
name = "api"
path = "tests/api.rs"
[[test]]
name = "crosscheck"
path = "tests/crosscheck.rs"