[[bin]]
name = "cryptex"
path = "src/main.rs"
[dependencies.argon2]
optional = true
version = "0.5"
[dependencies.atty]
version = "0.2"
[dependencies.chacha20poly1305]
optional = true
version = "0.10"
[dependencies.clap]
version = "2.33"
[dependencies.colored]
version = "3.0"
[dependencies.dirs]
optional = true
version = "6.0"
[dependencies.hex]
version = "0.4"
[dependencies.rpassword]
version = "7"
[dependencies.rusqlite]
features = ["bundled-sqlcipher-vendored-openssl"]
optional = true
version = "0.37"
[dependencies.serde]
optional = true
version = "1"
[dependencies.subtle]
version = "2"
[dependencies.whoami]
version = "1.6"
[dependencies.zeroize]
features = ["zeroize_derive"]
version = "1"
[dev-dependencies.tokio]
features = ["rt", "rt-multi-thread", "macros"]
version = "1"
[features]
default = []
file = ["argon2", "chacha20poly1305", "dirs", "rusqlite"]
[lib]
crate-type = ["staticlib", "rlib", "cdylib"]
name = "cryptex"
path = "src/lib.rs"
[package]
authors = ["Michael Lodder <redmike7@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = []
description = """
Cryptex uses system keyrings to store and retrieve secrets
or a local file
"""
documentation = "https://docs.rs/cryptex/"
edition = "2024"
homepage = "https://github.com/mikelodder7/cryptex"
keywords = ["secrets", "vault", "keyring"]
license = "MIT/Apache-2.0"
name = "cryptex"
readme = "README.md"
repository = "https://github.com/mikelodder7/cryptex"
version = "1.10.0"
[target.'cfg(any(target_os = "macos", target_os = "linux"))'.dependencies.users]
version = "0.11"
[target.'cfg(target_os = "linux")'.dependencies.maplit]
version = "1"
[target.'cfg(target_os = "linux")'.dependencies.secret-service]
version = "2"
[target.'cfg(target_os = "macos")'.dependencies.core-foundation]
version = "0.9"
[target.'cfg(target_os = "macos")'.dependencies.core-foundation-sys]
version = "0.8"
[target.'cfg(target_os = "macos")'.dependencies.security-framework]
version = "2.9"
[target.'cfg(target_os = "macos")'.dependencies.security-framework-sys]
version = "2.9"
[target.'cfg(target_os = "windows")'.dependencies.byteorder]
version = "1.5"
[target.'cfg(target_os = "windows")'.dependencies.winapi]
features = ["dpapi", "errhandlingapi", "wincred", "winerror"]
version = "0.3"
[[test]]
name = "box"
path = "tests/box.rs"
[[test]]
name = "threads"
path = "tests/threads.rs"