[dependencies.lazy_static]
version = "1"
[dependencies.regex]
optional = true
version = "1.10.4"
[dev-dependencies.clap]
features = ["derive", "wrap_help"]
version = "4"
[dev-dependencies.keyring]
version = "2.3.3"
[dev-dependencies.rand]
version = "0.8"
[features]
default = ["platform-all"]
linux-default-keyutils = ["linux-keyutils"]
linux-no-secret-service = ["linux-default-keyutils"]
linux-secret-service = ["linux-secret-service-rt-async-io-crypto-rust"]
linux-secret-service-rt-async-io-crypto-openssl = ["secret-service/rt-async-io-crypto-openssl"]
linux-secret-service-rt-async-io-crypto-rust = ["secret-service/rt-async-io-crypto-rust"]
linux-secret-service-rt-tokio-crypto-openssl = ["secret-service/rt-tokio-crypto-openssl"]
linux-secret-service-rt-tokio-crypto-rust = ["secret-service/rt-tokio-crypto-rust"]
platform-all = ["platform-linux", "platform-freebsd", "platform-openbsd", "platform-macos", "platform-ios", "platform-windows"]
platform-freebsd = ["linux-secret-service"]
platform-ios = ["security-framework"]
platform-linux = ["linux-secret-service", "linux-keyutils"]
platform-macos = ["security-framework"]
platform-openbsd = ["linux-secret-service"]
platform-windows = ["windows-sys", "regex", "byteorder"]
windows-test-threading = []
[package]
authors = ["Nick Wimmers <wimmers.nicholas@gmail.com>"]
description = "Cross-platform library for searching the platform specific credential store, made possible by keyring-rs"
edition = "2021"
exclude = [".github/"]
homepage = "https://github.com/wiimmers/keyring-search"
license = "MIT OR Apache-2.0"
name = "keyring-search"
readme = "README.md"
repository = "https://github.com/wiimmers/keyring-search.git"
rust-version = "1.68"
version = "1.2.1"
[target.'cfg(target_os = "freebsd")'.dependencies.secret-service]
optional = true
version = "4"
[target.'cfg(target_os = "ios")'.dependencies.security-framework]
optional = true
version = "2.11.0"
[target.'cfg(target_os = "ios")'.dev-dependencies.core-foundation]
version = "0.9.4"
[target.'cfg(target_os = "ios")'.dev-dependencies.security-framework-sys]
version = "2.11.0"
[target.'cfg(target_os = "linux")'.dependencies.linux-keyutils]
features = ["std"]
optional = true
version = "0.2"
[target.'cfg(target_os = "linux")'.dependencies.secret-service]
optional = true
version = "4"
[target.'cfg(target_os = "macos")'.dependencies.security-framework]
optional = true
version = "2.11.0"
[target.'cfg(target_os = "macos")'.dev-dependencies.core-foundation]
version = "0.9.4"
[target.'cfg(target_os = "macos")'.dev-dependencies.security-framework-sys]
version = "2.11.0"
[target.'cfg(target_os = "openbsd")'.dependencies.secret-service]
optional = true
version = "4"
[target.'cfg(target_os = "windows")'.dependencies.byteorder]
optional = true
version = "1.2"
[target.'cfg(target_os = "windows")'.dependencies.windows-sys]
features = ["Win32_Foundation", "Win32_Security_Credentials", "Win32_System_Time", "Win32_Storage_FileSystem"]
optional = true
version = "0.52"