[package]
edition = "2021"
rust-version = "1.88"
name = "revault_cli"
version = "0.0.3"
build = false
exclude = [
"testbox",
"*.lbox",
"*.lbox.lock",
"*.profile-backup",
".env",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI for reVault encrypted lockboxes, store files, variables and forms with integration to your platform key storage"
documentation = "https://docs.rs/revault_cli"
readme = "README.md"
license-file = "LICENSE"
repository = "https://github.com/onepub-dev/reVault"
[[bin]]
name = "lbx"
path = "src/bin/lbx.rs"
[[bin]]
name = "lockbox"
path = "src/main.rs"
[[test]]
name = "agent_flow"
path = "tests/agent_flow.rs"
[[test]]
name = "cli_flow"
path = "tests/cli_flow.rs"
[[test]]
name = "completion"
path = "tests/completion.rs"
[[test]]
name = "contact_receive_alias"
path = "tests/contact_receive_alias.rs"
[[test]]
name = "help_open_key"
path = "tests/help_open_key.rs"
[[test]]
name = "publish_integration"
path = "tests/publish_integration.rs"
[dependencies.clap]
version = "4.6.1"
features = [
"error-context",
"help",
"std",
"usage",
]
default-features = false
[dependencies.clap_complete]
version = "4.6.7"
features = ["unstable-dynamic"]
default-features = false
[dependencies.getrandom]
version = "0.4"
[dependencies.revault_lockbox_api]
version = "0.0.3"
[dependencies.revault_migration]
version = "0.0.1"
[dependencies.revault_publish_protocol]
version = "0.0.3"
[dependencies.revault_vault_api]
version = "0.0.3"
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.11"
[dev-dependencies.tempfile]
version = "3"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.59"
features = [
"Win32_Foundation",
"Win32_System_Console",
]