1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
# SPDX-FileCopyrightText: Heiko Schaefer <heiko@schaefer.name>
# SPDX-License-Identifier: CC0-1.0
[package]
name = "openpgp-card-state"
description = "Experimental storage mechanism for openpgp-card device state"
version = "0.3.1"
authors = ["Heiko Schaefer <heiko@schaefer.name>"]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://codeberg.org/openpgp-card/state/"
documentation = "https://docs.rs/openpgp-card-state"
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
confy = "0.6"
keyring = { version = "3", features = [
"apple-native",
"windows-native",
"sync-secret-service",
] }
rpassword = "7"
serde = { version = "1", features = ["derive"] }
|