[package]
edition = "2024"
rust-version = "1.95"
name = "rustls-crl-refresh"
version = "0.0.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Process-wide CRL cache and refreshable rustls verifiers without ServerConfig churn."
readme = "README.md"
keywords = [
"rustls",
"tls",
"crl",
"revocation",
"verifier",
]
categories = [
"cryptography",
"network-programming",
]
license = "MIT"
repository = "https://github.com/canmi21/vane"
[lib]
name = "rustls_crl_refresh"
path = "src/lib.rs"
[dependencies.arc-swap]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.parking_lot]
version = "0.12"
[dependencies.rustls]
version = "0.23"
features = ["std"]
default-features = false
[dependencies.rustls-pemfile]
version = "2"
[dependencies.rustls-pki-types]
version = "1"
[dependencies.time]
version = "0.3"
[dependencies.tokio]
version = "1"
features = [
"fs",
"rt",
"rt-multi-thread",
"sync",
"time",
"macros",
]
[dependencies.tokio-util]
version = "0.7"
[dependencies.tracing]
version = "0.1"
[dependencies.x509-parser]
version = "0.18"
[dev-dependencies.rcgen]
version = "0.14"
[dev-dependencies.rustls]
version = "0.23"
features = [
"std",
"aws-lc-rs",
]
default-features = false
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]
[lints.clippy]
cognitive_complexity = "warn"
doc_markdown = "allow"
similar_names = "allow"
unnecessary_wraps = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unreachable_pub = "warn"
unsafe_code = "deny"