[package]
edition = "2021"
rust-version = "1.73"
name = "pkix-path-builder"
version = "0.3.2"
authors = ["Mark Atwood <mark@reviewcommit.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "RFC 4158 certification path building for pkix-path"
readme = "README.md"
keywords = [
"x509",
"certificate",
"pki",
"pkix",
"path-building",
]
categories = [
"cryptography",
"no-std",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/MarkAtwood/crate-pkix"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = []
serde = ["dep:serde"]
std = [
"der/std",
"x509-cert/std",
]
[lib]
name = "pkix_path_builder"
path = "src/lib.rs"
[[test]]
name = "bettertls"
path = "tests/bettertls.rs"
[[test]]
name = "build_first_valid_path"
path = "tests/build_first_valid_path.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.der]
version = "0.7"
[dependencies.pkix-path]
version = "0.3.2"
[dependencies.serde]
version = "1"
features = [
"derive",
"alloc",
]
optional = true
default-features = false
[dependencies.x509-cert]
version = "0.2"
[dev-dependencies.signature]
version = "2"
[dev-dependencies.spki]
version = "0.7"