Set version numbers for crates.io releases
This commit is contained in:
parent
85a05167d1
commit
b8e3fc4816
4 changed files with 6 additions and 6 deletions
|
@ -13,9 +13,9 @@ documentation = "https://docs.rs/crate/openpgp-card-sequoia"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sequoia-openpgp = "1.3"
|
sequoia-openpgp = "1.3"
|
||||||
openpgp-card = { path = "../openpgp-card", version = "0.0.1" }
|
openpgp-card = { path = "../openpgp-card", version = "0.0.2" }
|
||||||
openpgp-card-scdc = { path = "../scdc" }
|
#openpgp-card-scdc = { path = "../scdc" }
|
||||||
openpgp-card-pcsc = { path = "../pcsc" }
|
openpgp-card-pcsc = { path = "../pcsc", version = "0.0.1" }
|
||||||
chrono = "0.4"
|
chrono = "0.4"
|
||||||
anyhow = "1"
|
anyhow = "1"
|
||||||
thiserror = "1"
|
thiserror = "1"
|
||||||
|
|
|
@ -11,7 +11,7 @@ use sequoia_openpgp::Cert;
|
||||||
use openpgp_card::card_app::CardApp;
|
use openpgp_card::card_app::CardApp;
|
||||||
use openpgp_card::KeyType;
|
use openpgp_card::KeyType;
|
||||||
use openpgp_card_pcsc::PcscClient;
|
use openpgp_card_pcsc::PcscClient;
|
||||||
use openpgp_card_scdc::ScdClient;
|
// use openpgp_card_scdc::ScdClient;
|
||||||
|
|
||||||
use openpgp_card_sequoia::CardBase;
|
use openpgp_card_sequoia::CardBase;
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
name = "openpgp-card"
|
name = "openpgp-card"
|
||||||
description = "A client implementation for the OpenPGP card specification"
|
description = "A client implementation for the OpenPGP card specification"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
version = "0.0.1"
|
version = "0.0.2"
|
||||||
authors = ["Heiko Schaefer <heiko@schaefer.name>"]
|
authors = ["Heiko Schaefer <heiko@schaefer.name>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
repository = "https://gitlab.com/hkos/openpgp-card"
|
repository = "https://gitlab.com/hkos/openpgp-card"
|
||||||
|
|
|
@ -12,7 +12,7 @@ repository = "https://gitlab.com/hkos/openpgp-card"
|
||||||
documentation = "https://docs.rs/crate/openpgp-card-pcsc"
|
documentation = "https://docs.rs/crate/openpgp-card-pcsc"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
openpgp-card = { path = "../openpgp-card" }
|
openpgp-card = { path = "../openpgp-card", version = "0.0.2" }
|
||||||
pcsc = "2"
|
pcsc = "2"
|
||||||
anyhow = "1"
|
anyhow = "1"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
|
|
Loading…
Reference in a new issue