21 lines
698 B
TOML
21 lines
698 B
TOML
# SPDX-FileCopyrightText: 2021-2023 Heiko Schaefer <heiko@schaefer.name>
|
|
# SPDX-License-Identifier: MIT OR Apache-2.0
|
|
|
|
[package]
|
|
name = "card-backend-scdc"
|
|
description = "Experimental SCDaemon Client, e.g. for use with the openpgp-card crate"
|
|
authors = ["Heiko Schaefer <heiko@schaefer.name>"]
|
|
license = "MIT OR Apache-2.0"
|
|
version = "0.5.0"
|
|
edition = "2018"
|
|
repository = "https://gitlab.com/openpgp-card/openpgp-card"
|
|
documentation = "https://docs.rs/crate/openpgp-card-scdc"
|
|
|
|
[dependencies]
|
|
card-backend = { path = "../card-backend", version = "0.2" }
|
|
sequoia-ipc = "0.29"
|
|
hex = "0.4"
|
|
futures = "0.3"
|
|
tokio = { version = "1.13.1", features = ["rt-multi-thread"] }
|
|
lazy_static = "1.4"
|
|
log = "0.4"
|