[package]
edition = "2021"
rust-version = "1.71"
name = "rustls-native-certs"
version = "0.8.4"
build = false
include = [
"Cargo.toml",
"LICENSE",
"LICENSE-APACHE",
"LICENSE-MIT",
"LICENSE-ISC",
"README.md",
"src/**/*.rs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "rustls-native-certs allows rustls to use the platform native certificate store"
homepage = "https://github.com/rustls/rustls-native-certs"
readme = "README.md"
categories = [
"network-programming",
"cryptography",
]
license = "Apache-2.0 OR ISC OR MIT"
repository = "https://github.com/rustls/rustls-native-certs"
[package.metadata.docs.rs]
rustdoc-args = [
"--cfg",
"rustls_native_certs_docsrs",
]
[lib]
name = "rustls_native_certs"
path = "src/lib.rs"
[dependencies.pki-types]
version = "1.10"
features = ["std"]
package = "rustls-pki-types"
[dev-dependencies.ring]
version = "0.17"
[dev-dependencies.rustls]
version = "0.23"
[dev-dependencies.rustls-webpki]
version = "0.103"
[dev-dependencies.serial_test]
version = "3"
[dev-dependencies.tempfile]
version = "3.5"
[dev-dependencies.untrusted]
version = "0.9"
[dev-dependencies.webpki-roots]
version = "1"
[dev-dependencies.x509-parser]
version = "0.18"
[target.'cfg(all(unix, not(target_os = "macos")))'.dependencies.openssl-probe]
version = "0.2"
[target.'cfg(target_os = "macos")'.dependencies.security-framework]
version = "3"
[target."cfg(windows)".dependencies.schannel]
version = "0.1"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(rustls_native_certs_docsrs)"]