[package]
edition = "2024"
rust-version = "1.95"
name = "rustls-native-roots-cache"
version = "0.0.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Process-wide cache for rustls's native trust store, with platform-aware retry and sticky-failure semantics."
readme = "README.md"
keywords = [
"rustls",
"tls",
"trust-store",
"certificates",
"native-certs",
]
categories = [
"cryptography",
"network-programming",
]
license = "MIT"
repository = "https://github.com/canmi21/vane"
[lib]
name = "rustls_native_roots_cache"
path = "src/lib.rs"
[dependencies.arc-swap]
version = "1"
[dependencies.rustls]
version = "0.23"
features = ["std"]
default-features = false
[dependencies.rustls-native-certs]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[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"