[package]
edition = "2021"
rust-version = "1.70"
name = "runar-keys"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Standards-compliant X.509 certificates and ECDSA P-256 key management for Runar"
homepage = "https://github.com/runar-labs/runar-rust"
documentation = "https://docs.rs/runar-keys"
readme = "README.md"
keywords = [
"pki",
"x509",
"ecdsa",
"p256",
"tls",
]
categories = [
"cryptography",
"authentication",
"network-programming",
]
license = "MIT"
repository = "https://github.com/runar-labs/runar-rust"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
targets = [
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-gnu",
"x86_64-apple-darwin",
"aarch64-apple-darwin",
"x86_64-pc-windows-msvc",
"aarch64-pc-windows-msvc",
]
[features]
default = []
macros = []
[lib]
name = "runar_keys"
path = "src/lib.rs"
[[test]]
name = "certs_integration_test"
path = "tests/certs_integration_test.rs"
[[test]]
name = "end_to_end_test"
path = "tests/end_to_end_test.rs"
[[test]]
name = "hkdf_labels_test"
path = "tests/hkdf_labels_test.rs"
[dependencies.aes-gcm]
version = "0.10"
[dependencies.anyhow]
version = "1.0"
[dependencies.base64]
version = "0.21"
[dependencies.bincode]
version = "1.3"
[dependencies.chacha20poly1305]
version = "0.10"
[dependencies.ecdsa]
version = "0.16"
[dependencies.hex]
version = "0.4"
[dependencies.hkdf]
version = "0.12"
[dependencies.log]
version = "0.4"
[dependencies.openssl]
version = "0.10"
features = ["vendored"]
[dependencies.p256]
version = "0.13"
features = [
"ecdsa",
"pkcs8",
"serde",
"ecdh",
]
[dependencies.pkcs8]
version = "0.10"
features = ["std"]
[dependencies.prost]
version = "0.12"
features = [
"std",
"derive",
]
default-features = false
[dependencies.rand]
version = "0.8"
[dependencies.rcgen]
version = "0.12"
[dependencies.runar_common]
version = "0.1"
[dependencies.rustls-pki-types]
version = "1.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.0"
features = ["full"]
[dependencies.x509-parser]
version = "0.16"
features = ["verify"]
[dev-dependencies.tempfile]
version = "3.0"