[package]
edition = "2024"
rust-version = "1.87"
name = "kovra-core"
version = "0.9.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core of kovra — local secrets manager for development: vault, sensitivity policy, providers, and the security invariants."
homepage = "https://kovra.sh"
readme = "README.md"
keywords = [
"secrets",
"vault",
"security",
"credentials",
]
categories = [
"cryptography",
"command-line-utilities",
]
license = "BUSL-1.1"
repository = "https://github.com/kaeus-inc/kovra-core"
resolver = "2"
[lib]
name = "kovra_core"
path = "src/lib.rs"
[[test]]
name = "acceptance"
path = "tests/acceptance.rs"
[[test]]
name = "policy_enforcement"
path = "tests/policy_enforcement.rs"
[[test]]
name = "resolver"
path = "tests/resolver.rs"
[[test]]
name = "round_trip"
path = "tests/round_trip.rs"
[[test]]
name = "vault_store"
path = "tests/vault_store.rs"
[dependencies.age]
version = "0.11"
features = [
"ssh",
"armor",
]
[dependencies.argon2]
version = "0.5.3"
[dependencies.blake3]
version = "1.8.5"
[dependencies.chacha20poly1305]
version = "0.10.1"
features = ["getrandom"]
[dependencies.hmac]
version = "0.12"
[dependencies.ignore]
version = "0.4"
[dependencies.rand]
version = "0.8"
[dependencies.redb]
version = "4.1.0"
[dependencies.regex]
version = "1.11"
[dependencies.rsa]
version = "0.9"
features = ["sha2"]
[dependencies.secrecy]
version = "0.10.3"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.150"
[dependencies.sha1]
version = "0.10"
features = ["oid"]
[dependencies.sha2]
version = "0.10"
[dependencies.ssh-encoding]
version = "0.2"
[dependencies.ssh-key]
version = "0.6"
features = [
"ed25519",
"rsa",
"encryption",
]
[dependencies.thiserror]
version = "2.0.18"
[dependencies.zeroize]
version = "1.8.2"
features = ["derive"]
[dev-dependencies.blake3]
version = "1.8.5"
[dev-dependencies.proptest]
version = "1.11.0"
[dev-dependencies.tempfile]
version = "3.27.0"
[target.'cfg(target_os = "linux")'.dependencies.keyring]
version = "3"
features = [
"sync-secret-service",
"crypto-rust",
]
[target.'cfg(target_os = "macos")'.dependencies.keyring]
version = "3"
features = ["apple-native"]
[target.'cfg(target_os = "windows")'.dependencies.keyring]
version = "3"
features = ["windows-native"]
[target.'cfg(target_os = "windows")'.dependencies.windows]
version = "0.62"
features = [
"Win32_Foundation",
"Win32_Security",
"Win32_Security_Authorization",
"Win32_System_Threading",
]