Files
pure_sagacity 34a046fb9a added the server with a health check
added .env.example, also removed the old empty config file
2026-07-16 11:49:24 -05:00

31 lines
699 B
TOML

[package]
name = "cli"
version = "1.0.0"
edition = "2024"
authors = ["idle_river <khokharmaaz@gmail.com>"]
description = "An open source secrets management and distribution platform"
license = "GLP-3.0"
[dependencies]
diesel = { version = "2.2.0", features = [
"sqlite",
"returning_clauses_for_sqlite_3_35",
"chrono",
] }
clap = { version = "4.6.1", features = ["derive", "cargo"] }
serde = { version = "1.0.228", features = ["derive"] }
uuid = { version = "1.23.5", features = ["v4"] }
crypto = { path = "../crypto" }
keyring = "4.1.4"
colored = "3.1.1"
base64 = "0.22.1"
chrono = "0.4.45"
dotenvy = "0.15"
toml = "1.1.2"
hex = "0.4"
dirs = "6"
[[bin]]
name = "harbor"
path = "src/main.rs"