- Introduced a new hierarchical signing system using HashiCorp Vault. - Added Rust modules for user management, secrets setup, and document API. - Implemented API endpoints for login, document upload, signing, and verification. - Updated README with features, usage, and API examples.
19 lines
522 B
TOML
19 lines
522 B
TOML
[package]
|
|
name = "vault-hier"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
reqwest = { version = "0.11.18", features = ["json"] }
|
|
tokio = { version = "1.28.0", features = ["full"] }
|
|
serde = { version = "1.0.160", features = ["derive"] }
|
|
serde_json = "1.0.96"
|
|
anyhow = "1.0.70"
|
|
axum = { version = "0.6.18", features = ["multipart"] }
|
|
uuid = { version = "1.3.0", features = ["v4", "serde"] }
|
|
sha2 = "0.10.6"
|
|
base64 = "0.21.0"
|
|
tower = "0.4.13"
|
|
tower-http = { version = "0.4.0", features = ["cors"] }
|
|
futures = "0.3.28"
|