[package]
edition = "2024"
name = "onepass"
version = "2.3.4"
build = "build.rs"
exclude = [
".githook/*",
".github/**",
".gitignore",
"example/**",
"data/onepass.entitlements",
"onepass.provisionprofile",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A mostly-stateless deterministic password manager"
readme = "README.md"
keywords = [
"password",
"cryptography",
"deterministic",
]
categories = ["command-line-utilities"]
license = "Apache-2.0"
repository = "https://github.com/mrdomino/onepass"
[features]
default = [
"keyring",
"readpass-vendored",
]
macos-biometry = [
"objc2",
"objc2-core-foundation",
"objc2-foundation",
"objc2-local-authentication",
"objc2-security",
]
readpass-libbsd = ["readpassphrase-3/libbsd-static"]
readpass-vendored = ["readpassphrase-3/linux-vendored"]
[[bin]]
name = "onepass"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.argon2]
version = "0.5.3"
features = ["zeroize"]
[dependencies.char-iter]
version = "0.1.0"
[dependencies.clap]
version = "4.5.60"
features = [
"derive",
"env",
"unicode",
"wrap_help",
]
[dependencies.crypto-bigint]
version = "0.6.1"
features = [
"rand_core",
"zeroize",
]
[dependencies.keyring]
version = "3.6.3"
features = [
"sync-secret-service",
"apple-native",
"windows-native",
"crypto-openssl",
]
optional = true
[dependencies.nom]
version = "8.0.0"
[dependencies.rand_chacha]
version = "0.3.1"
[dependencies.rand_core]
version = "0.6.4"
[dependencies.readpassphrase-3]
version = "1.0.2"
features = [
"windows-vendored",
"zeroize",
]
default-features = false
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_yaml]
version = "0.9.34"
[dependencies.url]
version = "2.5.8"
[dependencies.zeroize]
version = "1.8.2"
[dev-dependencies.num-traits]
version = "0.2.19"
[dev-dependencies.tempfile]
version = "3.27.0"
[target.'cfg(target_os = "macos")'.dependencies.objc2]
version = "0.6.4"
optional = true
[target.'cfg(target_os = "macos")'.dependencies.objc2-core-foundation]
version = "0.3.2"
optional = true
[target.'cfg(target_os = "macos")'.dependencies.objc2-foundation]
version = "0.3.2"
optional = true
[target.'cfg(target_os = "macos")'.dependencies.objc2-local-authentication]
version = "0.3.2"
optional = true
[target.'cfg(target_os = "macos")'.dependencies.objc2-security]
version = "0.3.2"
optional = true