openpgp-card/card-functionality/Cargo.toml
Heiko Schaefer 0e94871189
Implement PcscCard::transaction() to replace the transaction!() macro.
(This currently requires unreleased pcsc from git)
2022-02-15 15:34:52 +01:00

43 lines
No EOL
906 B
TOML

# SPDX-FileCopyrightText: 2021 Heiko Schaefer <heiko@schaefer.name>
# SPDX-License-Identifier: MIT OR Apache-2.0
[package]
name = "openpgp-card-tests"
version = "0.1.0"
edition = "2018"
default-run = "keygen"
[lib]
name = "card_functionality"
path = "src/lib.rs"
[[bin]]
name = "import"
path = "src/import.rs"
[[bin]]
name = "keygen"
path = "src/keygen.rs"
[[bin]]
name = "other"
path = "src/other.rs"
[[bin]]
name = "list-cards"
path = "src/list-cards.rs"
[dependencies]
openpgp-card = { path = "../openpgp-card" }
openpgp-card-sequoia = { path = "../openpgp-card-sequoia" }
openpgp-card-scdc = { path = "../scdc" }
openpgp-card-pcsc = { path = "../pcsc" }
pcsc = { git = "https://github.com/bluetech/pcsc-rust/", rev = "ac1feee16d54bd6ba1681a201fc8f25808aa346d" }
sequoia-openpgp = "1.3"
anyhow = "1"
thiserror = "1.0"
env_logger = "0.8"
log = "0.4"
toml = "0.5"
serde = "1.0"
serde_derive = "1.0"