67 lines
1.5 KiB
TOML
Raw Normal View History

[package]
authors.workspace = true
description = "Vault Service for Provisioning Platform with secrets and key management (Age dev, Cosmian KMS prod, RustyVault self-hosted)"
edition.workspace = true
license.workspace = true
2026-01-12 05:07:30 +00:00
name = "vault-service"
repository.workspace = true
version.workspace = true
[[bin]]
name = "provisioning-vault-service"
path = "src/main.rs"
[dependencies]
# Async runtime
tokio = { workspace = true, features = ["full"] }
# Web framework
axum = { workspace = true, features = ["json"] }
tower = { workspace = true }
tower-http = { workspace = true, features = ["cors", "trace"] }
# Serialization
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
toml = { workspace = true }
# HTTP client
reqwest = { workspace = true }
# Age encryption (development)
age = { workspace = true }
# RustyVault (self-hosted Vault alternative)
rusty_vault = { workspace = true }
# Cryptography
base64 = { workspace = true }
rand = { workspace = true }
# Error handling
anyhow = { workspace = true }
2026-01-12 05:07:30 +00:00
thiserror = { workspace = true }
# Logging
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
# Time
chrono = { workspace = true, features = ["serde"] }
# Configuration
config = { workspace = true }
# SecretumVault (Enterprise secrets management - optional)
secretumvault = { workspace = true }
[dev-dependencies]
http-body-util = { workspace = true }
2026-01-12 05:07:30 +00:00
mockito = { workspace = true }
tempfile = { workspace = true }
2026-01-12 05:07:30 +00:00
tokio-test = { workspace = true }
[lib]
name = "vault_service"
path = "src/lib.rs"