[package]
edition = "2024"
rust-version = "1.87"
name = "kc-cli"
version = "0.2.0"
authors = ["Bryan Matteson <7145232+bryanmatteson@users.noreply.github.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI for reading and writing macOS keychain files without the Security framework"
homepage = "https://github.com/bryanmatteson/keychain-tools"
documentation = "https://docs.rs/kc-cli"
readme = "README.md"
keywords = [
"keychain",
"macos",
"passwords",
"security",
]
categories = [
"command-line-utilities",
"cryptography",
"os::macos-apis",
]
license = "MIT"
repository = "https://github.com/bryanmatteson/keychain-tools"
[features]
default = []
trust-apps = ["keychain-rs/trust-apps"]
[[bin]]
name = "kc"
path = "src/bin/kc.rs"
[[test]]
name = "kc_cli"
path = "tests/kc_cli.rs"
[[test]]
name = "kc_options"
path = "tests/kc_options.rs"
[[test]]
name = "keychain_identity"
path = "tests/keychain_identity.rs"
[[test]]
name = "keychain_interop"
path = "tests/keychain_interop.rs"
[dependencies.clap]
version = "4.5"
features = [
"derive",
"env",
]
[dependencies.clap_complete]
version = "4.5"
[dependencies.hex]
version = "0.4"
[dependencies.keychain-rs]
version = "0.1.0"
[dependencies.libc]
version = "0.2"
[dependencies.rpassword]
version = "7"
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"