41 lines
1.1 KiB
TOML
41 lines
1.1 KiB
TOML
# SPDX-FileCopyrightText: 2021-2022 Heiko Schaefer <heiko@schaefer.name>
|
|
# SPDX-FileCopyrightText: 2022 Nora Widdecke <mail@nora.pink>
|
|
# SPDX-License-Identifier: MIT OR Apache-2.0
|
|
|
|
[package]
|
|
name = "openpgp-card-tools"
|
|
description = "CLI tools for OpenPGP cards"
|
|
license = "MIT OR Apache-2.0"
|
|
version = "0.0.16"
|
|
authors = ["Heiko Schaefer <heiko@schaefer.name>"]
|
|
edition = "2018"
|
|
repository = "https://gitlab.com/openpgp-card/openpgp-card"
|
|
documentation = "https://docs.rs/crate/openpgp-card-tools"
|
|
|
|
[dependencies]
|
|
sequoia-openpgp = "1.3"
|
|
openpgp-card-pcsc = { path = "../pcsc", version = "0.3" }
|
|
openpgp-card-sequoia = { path = "../openpgp-card-sequoia", version = "0.0.20" }
|
|
sshkeys = "0.3.2"
|
|
pem = "1"
|
|
rpassword = "6"
|
|
anyhow = "1"
|
|
clap = { version = "3", features = ["derive", "wrap_help"] }
|
|
env_logger = "0.9"
|
|
log = "0.4"
|
|
serde_json = "1.0.86"
|
|
serde = { version = "1.0.145", features = ["derive"] }
|
|
semver = "1.0.14"
|
|
serde_yaml = "0.9.13"
|
|
thiserror = "1.0.37"
|
|
indoc = "1"
|
|
|
|
[build-dependencies]
|
|
subplot-build = "0.5.0"
|
|
|
|
[dev-dependencies]
|
|
fehler = "1.0.0"
|
|
subplotlib = "0.5.0"
|
|
|
|
[package.metadata.cargo-udeps.ignore]
|
|
development = ["fehler", "subplotlib"]
|