Skip to content

Commit

Permalink
Merge pull request #40 from Nitrokey/release-033
Browse files Browse the repository at this point in the history
Prepare release 0.3.3
  • Loading branch information
sosthene-nitrokey committed Nov 8, 2023
2 parents f55520b + 1a5e7e5 commit caed9e4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Changelog

## Unreleased
## [v0.3.3][] (2023-12-08)

- Reject NFC requests ([#39][])
- Put RSA feature behind a feature flag

[#39]: https://github.com/Nitrokey/piv-authenticator/pull/39

Expand Down
11 changes: 7 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "piv-authenticator"
version = "0.3.2"
version = "0.3.3"
authors = ["Nicolas Stalder <[email protected]>", "Nitrokey GmbH"]
edition = "2021"
license = "Apache-2.0 OR MIT"
Expand Down Expand Up @@ -50,7 +50,8 @@ stoppable_thread = "0.2.1"
expectrl = "0.6.0"

# Examples
trussed-usbip = { git = "https://github.com/trussed-dev/pc-usbip-runner", default-features = false, features = ["ccid"], rev = "f3a680ca4c9a1411838ae0774f1713f79d4c2979"}
# usbip
trussed-usbip = { version = "0.0.1", default-features = false, features = ["ccid"] }
usbd-ccid = { version = "0.2.0", features = ["highspeed-usb"]}
rand = "0.8.5"
asn1 = "0.15.2"
Expand All @@ -74,11 +75,13 @@ log-warn = []
log-error = []

[patch.crates-io]
trussed = { git = "https://github.com/trussed-dev/trussed" , rev = "55ea391367fce4bf5093ff2d3c79041d7aef0485" }
trussed = { git = "https://github.com/nitrokey/trussed" , tag = "v0.1.0-nitrokey.11" }
trussed-auth = { git = "https://github.com/trussed-dev/trussed-auth.git", tag = "v0.2.2"}
trussed-rsa-alloc = { git = "https://github.com/trussed-dev/trussed-rsa-backend.git", tag = "v0.1.0"}
trussed-staging = { git = "https://github.com/trussed-dev/trussed-staging", tag = "v0.1.0" }
apdu-dispatch = { git = "https://github.com/trussed-dev/apdu-dispatch.git", rev = "915fc237103fcecc29d0f0b73391f19abf6576de" }
apdu-dispatch = { git = "https://github.com/Nitrokey/apdu-dispatch", tag = "v0.1.2-nitrokey.2" }
trussed-usbip = { git = "https://github.com/Nitrokey/pc-usbip-runner.git", tag = "v0.0.1-nitrokey.1" }
usbd-ccid = { git = "https://github.com/Nitrokey/usbd-ccid", tag = "v0.2.0-nitrokey.1" }

[profile.dev.package.rsa]
opt-level = 2
Expand Down
2 changes: 1 addition & 1 deletion examples/usbip.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ struct PivApp {
piv: piv::Authenticator<VirtClient>,
}

impl trussed_usbip::Apps<VirtClient, Dispatch> for PivApp {
impl trussed_usbip::Apps<'static, VirtClient, Dispatch> for PivApp {
type Data = ();
fn new<B: ClientBuilder<VirtClient, Dispatch>>(builder: &B, _data: ()) -> Self {
PivApp {
Expand Down

0 comments on commit caed9e4

Please sign in to comment.