keyring 2.0.5

Cross-platform library for managing passwords/credentials
Documentation
[[example]]
crate-type = ["staticlib"]
name = "iostest"
path = "examples/ios.rs"
[dependencies.lazy_static]
version = "1"
[dev-dependencies.clap]
features = ["derive", "wrap_help"]
version = "4"

[dev-dependencies.doc-comment]
version = "0.3"

[dev-dependencies.rand]
version = "0.8"

[dev-dependencies.rpassword]
version = "7.0"

[dev-dependencies.whoami]
version = "1.2"

[features]
default = ["linux-secret-service"]
linux-default-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"]

[package]
authors = ["Walther Chen <walther.chen@gmail.com>", "Daniel Brotsky <dev@brotsky.com>"]
description = "Cross-platform library for managing passwords/credentials"
edition = "2021"
exclude = [".github/"]
homepage = "https://github.com/hwchen/keyring-rs"
keywords = ["password", "credential", "keychain", "keyring", "cross-platform"]
license = "MIT OR Apache-2.0"
name = "keyring"
readme = "README.md"
repository = "https://github.com/hwchen/keyring-rs.git"
version = "2.0.5"
[target."cfg(target_os = \"freebsd\")".dependencies.secret-service]
optional = true
version = "3"
[target."cfg(target_os = \"ios\")".dependencies.security-framework]
version = "2.6"
[target."cfg(target_os = \"linux\")".dependencies.linux-keyutils]
features = ["std"]
version = "0.2"

[target."cfg(target_os = \"linux\")".dependencies.secret-service]
optional = true
version = "3"
[target."cfg(target_os = \"macos\")".dependencies.security-framework]
version = "2.6"
[target."cfg(target_os = \"windows\")".dependencies.byteorder]
version = "1.2"

[target."cfg(target_os = \"windows\")".dependencies.winapi]
features = ["wincred", "winerror", "errhandlingapi", "minwindef"]
version = "0.3"