Skip to content

Commit

Permalink
Merge pull request #36 from hug-dev/new-release
Browse files Browse the repository at this point in the history
Prepare the new release
  • Loading branch information
hug-dev authored Aug 3, 2021
2 parents 2cd54bb + ba43237 commit 51f0eb9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cryptoki-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cryptoki-sys"
version = "0.1.1"
version = "0.1.2"
authors = ["Contributors to the Parsec project"]
edition = '2018'
description = "FFI wrapper around the PKCS #11 API"
Expand Down
6 changes: 3 additions & 3 deletions cryptoki/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cryptoki"
version = "0.1.1"
version = "0.2.0"
authors = ["Contributors to the Parsec project"]
edition = '2018'
description = "Rust-native wrapper around the PKCS #11 API"
Expand All @@ -16,8 +16,8 @@ libloading = "0.7.0"
log = "0.4.14"
derivative = "2.2.0"
secrecy = "0.7.0"
psa-crypto = { git = "https://github.com/parallaxsecond/rust-psa-crypto.git", rev = "8605006d34944fa880edd3d4d347f460c5585747", default-features = false, optional = true }
cryptoki-sys = { path = "../cryptoki-sys", version = "0.1.1" }
psa-crypto = { version = "0.9.0", default-features = false, optional = true }
cryptoki-sys = { path = "../cryptoki-sys", version = "0.1.2" }

[dev-dependencies]
num-traits = "0.2.14"
Expand Down
2 changes: 1 addition & 1 deletion cryptoki/src/functions/session_management.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ impl Pkcs11 {
.into_result()?;
}

Ok(Session::new(session_handle, &self, slot_id))
Ok(Session::new(session_handle, self, slot_id))
}
}

Expand Down

0 comments on commit 51f0eb9

Please sign in to comment.