[dependencies.asn1-rs]
features = ["datetime"]
version = "0.7.0"
[dependencies.data-encoding]
version = "2.2.1"
[dependencies.der-parser]
features = ["bigint"]
version = "10.0"
[dependencies.lazy_static]
version = "1.4"
[dependencies.nom]
version = "7.0"
[dependencies.oid-registry]
features = ["crypto", "x509", "x962"]
version = "0.8"
[dependencies.ring]
optional = true
version = "0.17.7"
[dependencies.rusticata-macros]
version = "4.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.time]
features = ["formatting"]
version = "0.3.35"
[[example]]
name = "print-cert"
path = "examples/print-cert.rs"
[[example]]
name = "print-crl"
path = "examples/print-crl.rs"
[features]
default = []
validate = []
verify = ["ring"]
[lib]
name = "x509_parser"
path = "src/lib.rs"
[package]
authors = ["Pierre Chifflier <chifflier@wzdftpd.net>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["parser-implementations", "cryptography"]
description = "Parser for the X.509 v3 format (RFC 5280 certificates)"
edition = "2018"
homepage = "https://github.com/rusticata/x509-parser"
include = ["CHANGELOG.md", "LICENSE-*", "README.md", ".gitignore", ".travis.yml", "Cargo.toml", "src/*.rs", "src/extensions/*.rs", "src/validate/*.rs", "src/visitor/*.rs", "tests/*.rs", "assets/*.crl", "assets/*.csr", "assets/*.der", "assets/*.pem", "assets/crl-ext/*.der", "examples/*.rs"]
keywords = ["X509", "Certificate", "parser", "nom"]
license = "MIT OR Apache-2.0"
name = "x509-parser"
readme = "README.md"
repository = "https://github.com/rusticata/x509-parser.git"
rust-version = "1.67.1"
version = "0.17.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[[test]]
name = "pem"
path = "tests/pem.rs"
[[test]]
name = "readcert"
path = "tests/readcert.rs"
[[test]]
name = "readcrl"
path = "tests/readcrl.rs"
[[test]]
name = "readcsr"
path = "tests/readcsr.rs"
[[test]]
name = "run_all_fuzz_files"
path = "tests/run_all_fuzz_files.rs"
[[test]]
name = "test01"
path = "tests/test01.rs"
[[test]]
name = "verify"
path = "tests/verify.rs"