bump backend versions

card-backend to 0.2.0,
pcsc and scdc to 0.5.0
This commit is contained in:
Heiko Schaefer 2023-09-02 23:20:30 +02:00
parent 31eee9e738
commit 87a9f4f216
No known key found for this signature in database
GPG key ID: 4A849A1904CCBD7D
5 changed files with 9 additions and 9 deletions

View file

@ -6,7 +6,7 @@ name = "card-backend"
description = "Card backend trait, for use with the openpgp-card crate" description = "Card backend trait, for use with the openpgp-card crate"
authors = ["Heiko Schaefer <heiko@schaefer.name>"] authors = ["Heiko Schaefer <heiko@schaefer.name>"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
version = "0.1.0" version = "0.2.0"
edition = "2018" edition = "2018"
repository = "https://gitlab.com/openpgp-card/openpgp-card" repository = "https://gitlab.com/openpgp-card/openpgp-card"
documentation = "https://docs.rs/crate/card-backend" documentation = "https://docs.rs/crate/card-backend"

View file

@ -12,7 +12,7 @@ repository = "https://gitlab.com/openpgp-card/openpgp-card"
documentation = "https://docs.rs/crate/openpgp-card-sequoia" documentation = "https://docs.rs/crate/openpgp-card-sequoia"
[dependencies] [dependencies]
card-backend = { path = "../card-backend", version = "0.1" } card-backend = { path = "../card-backend", version = "0.2" }
sequoia-openpgp = { version = "1.4", default-features = false } sequoia-openpgp = { version = "1.4", default-features = false }
openpgp-card = { path = "../openpgp-card", version = "0.4" } openpgp-card = { path = "../openpgp-card", version = "0.4" }
chrono = "0.4" chrono = "0.4"
@ -22,8 +22,8 @@ log = "0.4"
rsa = "0.8.1" rsa = "0.8.1"
[dev-dependencies] [dev-dependencies]
card-backend-pcsc = { path = "../pcsc", version = "0.4" } card-backend-pcsc = { path = "../pcsc", version = "0.5" }
#card-backend-scdc = { path = "../scdc", version = "0.4" } #card-backend-scdc = { path = "../scdc", version = "0.5" }
env_logger = "0.10" env_logger = "0.10"
testresult = "0.3.0" testresult = "0.3.0"

View file

@ -12,7 +12,7 @@ repository = "https://gitlab.com/openpgp-card/openpgp-card"
documentation = "https://docs.rs/crate/openpgp-card" documentation = "https://docs.rs/crate/openpgp-card"
[dependencies] [dependencies]
card-backend = { path = "../card-backend", version = "0.1" } card-backend = { path = "../card-backend", version = "0.2" }
nom = "7" nom = "7"
hex-slice = "0.1" hex-slice = "0.1"
thiserror = "1" thiserror = "1"

View file

@ -6,13 +6,13 @@ name = "card-backend-pcsc"
description = "PCSC card backend, e.g. for use with the openpgp-card crate" description = "PCSC card backend, e.g. for use with the openpgp-card crate"
authors = ["Heiko Schaefer <heiko@schaefer.name>"] authors = ["Heiko Schaefer <heiko@schaefer.name>"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
version = "0.4.0" version = "0.5.0"
edition = "2018" edition = "2018"
repository = "https://gitlab.com/openpgp-card/openpgp-card" repository = "https://gitlab.com/openpgp-card/openpgp-card"
documentation = "https://docs.rs/crate/card-backend-pcsc" documentation = "https://docs.rs/crate/card-backend-pcsc"
[dependencies] [dependencies]
card-backend = { path = "../card-backend", version = "0.1" } card-backend = { path = "../card-backend", version = "0.2" }
iso7816-tlv = "0.4" iso7816-tlv = "0.4"
pcsc = "2.7" pcsc = "2.7"
log = "0.4" log = "0.4"

View file

@ -6,13 +6,13 @@ name = "card-backend-scdc"
description = "Experimental SCDaemon Client, e.g. for use with the openpgp-card crate" description = "Experimental SCDaemon Client, e.g. for use with the openpgp-card crate"
authors = ["Heiko Schaefer <heiko@schaefer.name>"] authors = ["Heiko Schaefer <heiko@schaefer.name>"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
version = "0.4.0" version = "0.5.0"
edition = "2018" edition = "2018"
repository = "https://gitlab.com/openpgp-card/openpgp-card" repository = "https://gitlab.com/openpgp-card/openpgp-card"
documentation = "https://docs.rs/crate/openpgp-card-scdc" documentation = "https://docs.rs/crate/openpgp-card-scdc"
[dependencies] [dependencies]
card-backend = { path = "../card-backend", version = "0.1" } card-backend = { path = "../card-backend", version = "0.2" }
sequoia-ipc = "0.29" sequoia-ipc = "0.29"
hex = "0.4" hex = "0.4"
futures = "0.3" futures = "0.3"