22 lines
687 B
TOML
22 lines
687 B
TOML
# SPDX-FileCopyrightText: 2021 Wiktor Kwapisiewicz <wiktor@metacode.biz>
|
|
# SPDX-License-Identifier: MIT OR Apache-2.0
|
|
|
|
[package]
|
|
name = "openpgp-card-examples"
|
|
description = "Examples and demos of apps utilizing openpgp-card-sequoia"
|
|
license = "MIT OR Apache-2.0"
|
|
version = "0.0.1"
|
|
authors = ["Wiktor Kwapisiewicz <wiktor@metacode.biz>"]
|
|
edition = "2018"
|
|
repository = "https://gitlab.com/openpgp-card/openpgp-card"
|
|
documentation = "https://docs.rs/crate/openpgp-card-examples"
|
|
|
|
[dependencies]
|
|
sequoia-openpgp = "1.3"
|
|
nettle = "7"
|
|
card-backend-pcsc = { path = "../pcsc" }
|
|
openpgp-card-sequoia = { path = "../openpgp-card-sequoia" }
|
|
chrono = "0.4"
|
|
anyhow = "1"
|
|
thiserror = "1"
|
|
log = "0.4"
|