[package]
edition = "2021"
rust-version = "1.88"
name = "revault_cli"
version = "0.0.11"
authors = ["OnePub IP Pty Ltd <support@onepub.dev>"]
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"
homepage = "https://github.com/onepub-dev/reVault"
documentation = "https://docs.rs/revault_cli"
readme = "README.md"
license-file = "LICENSE"
repository = "https://github.com/onepub-dev/reVault"
[package.metadata.dist]
display-name = "reVault CLI"
install-path = "~/.revault/bin"
installers = [
"shell",
"powershell",
"msi",
]
targets = [
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-gnu",
"x86_64-apple-darwin",
"aarch64-apple-darwin",
"x86_64-pc-windows-msvc",
]
unix-archive = ".tar.gz"
[package.metadata.wix]
eula = false
license = "LICENSE"
path-guid = "09D9BEC0-8140-4FF1-9F2F-87F0D78FE444"
upgrade-guid = "A6F49109-D525-434D-815E-1AE5C8160B52"
[features]
default = ["issue303-protocol"]
issue303-protocol = ["revault_lockbox_api/issue303-protocol"]
[[bin]]
name = "lbx"
path = "src/bin/lbx.rs"
test = false
[[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 = "migration_cli"
path = "tests/migration_cli.rs"
[[test]]
name = "mirror_cli"
path = "tests/mirror_cli.rs"
[[test]]
name = "publish_integration"
path = "tests/publish_integration.rs"
[dependencies.clap]
version = "4.6.1"
features = [
"error-context",
"color",
"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.7"
[dependencies.revault_migration]
version = "0.0.5"
[dependencies.revault_publish_protocol]
version = "0.0.5"
[dependencies.revault_vault_api]
version = "0.0.8"
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.11"
[dev-dependencies.revault_lockbox_api_container_v1]
version = "=0.0.6"
package = "revault_lockbox_api"
[dev-dependencies.revault_lockbox_api_v1]
version = "=0.0.3"
package = "revault_lockbox_api"
[dev-dependencies.revault_lockbox_api_vault_v1]
version = "=0.0.2"
package = "revault_lockbox_api"
[dev-dependencies.revault_vault_api_container_v1]
version = "=0.0.6"
package = "revault_vault_api"
[dev-dependencies.revault_vault_api_v1]
version = "=0.0.2"
package = "revault_vault_api"
[dev-dependencies.tempfile]
version = "3"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.61"
features = [
"Win32_Foundation",
"Win32_System_Console",
]