[package]
edition = "2024"
name = "sopsy"
version = "1.0.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The missing developer experience for SOPS"
homepage = "https://github.com/kigster/sopsy.git"
readme = "README.md"
keywords = [
"sops",
"secrets",
"age",
"macos",
"enclave",
]
categories = [
"command-line-utilities",
"config",
]
license = "MIT"
repository = "https://github.com/kigster/sopsy.git"
[lib]
name = "sopsy"
path = "src/lib.rs"
[[bin]]
name = "sopsy"
path = "src/main.rs"
[[test]]
name = "check"
path = "tests/check.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "completion"
path = "tests/completion.rs"
[[test]]
name = "deps"
path = "tests/deps.rs"
[[test]]
name = "doctor"
path = "tests/doctor.rs"
[[test]]
name = "edit"
path = "tests/edit.rs"
[[test]]
name = "enclave"
path = "tests/enclave.rs"
[[test]]
name = "git"
path = "tests/git.rs"
[[test]]
name = "init"
path = "tests/init.rs"
[[test]]
name = "recipient"
path = "tests/recipient.rs"
[[test]]
name = "sops"
path = "tests/sops.rs"
[dependencies.anyhow]
version = "1.0.103"
[dependencies.clap]
version = "4.6.1"
features = [
"derive",
"wrap_help",
]
[dependencies.clap_complete]
version = "4.6"
[dependencies.color-eyre]
version = "0.6.5"
[dependencies.humantime]
version = "2.2"
[dependencies.indicatif]
version = "0.18.4"
[dependencies.inquire]
version = "0.9.4"
[dependencies.owo-colors]
version = "4.3.0"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_yaml_ng]
version = "0.10.0"
[dependencies.tempfile]
version = "3.27.0"
[dependencies.thiserror]
version = "2.0.17"
[dependencies.toml]
version = "1.1.2"
[dependencies.which]
version = "8.0.4"
[dev-dependencies.assert_cmd]
version = "2.0.17"
[dev-dependencies.assert_fs]
version = "1.1.3"
[dev-dependencies.predicates]
version = "3.1.3"
[dev-dependencies.serial_test]
version = "3.2.0"