Skip to content

Commit

Permalink
0.1.2-pre.1 (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
franziskuskiefer committed Nov 18, 2023
1 parent 574b7fc commit c8df654
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hpke-rs"
version = "0.1.1"
version = "0.1.2-pre.1"
authors = ["Franziskus Kiefer <franziskuskiefer@gmail.com>"]
edition = "2021"
license = "MPL-2.0"
Expand All @@ -13,9 +13,9 @@ repository = "https://github.com/franziskuskiefer/hpke-rs"
log = "0.4"
serde_json = { version = "1.0", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
tls_codec = { version = "0.3.0", features = ["derive"], optional = true }
tls_codec = { version = "0.4.0-pre.1", features = ["derive"], optional = true }
zeroize = { version = "1.5", features = ["zeroize_derive"] }
hpke-rs-crypto = { version = "0.1.2", path = "./traits" }
hpke-rs-crypto = { version = "0.1.3-pre.1", path = "./traits" }

[features]
default = []
Expand All @@ -30,7 +30,7 @@ serde = { version = "1.0", features = ["derive"] }
lazy_static = "1.4"
rayon = "1.5"
hpke-rs = { path = ".", features = ["hpke-test", "hazmat"] }
hpke-rs-rust-crypto = { version = "0.1.2", path = "./rust_crypto_provider", features = [
hpke-rs-rust-crypto = { version = "0.1.3-pre.1", path = "./rust_crypto_provider", features = [
"deterministic-prng",
] }
# hpke-rs-evercrypt = { version = "0.1.3-pre.1", path = "./evercrypt_provider", features = ["deterministic-prng"] }
Expand Down
4 changes: 2 additions & 2 deletions rust_crypto_provider/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hpke-rs-rust-crypto"
version = "0.1.2"
version = "0.1.3-pre.1"
authors = ["Franziskus Kiefer <franziskuskiefer@gmail.com>"]
edition = "2021"
license = "MPL-2.0"
Expand All @@ -10,7 +10,7 @@ readme = "Readme.md"
repository = "https://github.com/franziskuskiefer/hpke-rs"

[dependencies]
hpke-rs-crypto = { version = "0.1.2", path = "../traits" }
hpke-rs-crypto = { version = "0.1.3-pre.1", path = "../traits" }
# Rust crypto
hkdf = { version = "0.12" }
sha2 = { version = "0.10" }
Expand Down
4 changes: 2 additions & 2 deletions traits/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hpke-rs-crypto"
version = "0.1.2"
version = "0.1.3-pre.1"
authors = ["Franziskus Kiefer <franziskuskiefer@gmail.com>"]
edition = "2021"
license = "MPL-2.0"
Expand All @@ -14,4 +14,4 @@ serde_json = { version = "1.0" }
serde = { version = "1.0", features = ["derive"] }
rand = { version = "0.8" }
getrandom = { version = "0.2", features = ["js"] }
tls_codec = { version = "0.3.0", features = ["derive"] }
tls_codec = { version = "0.4.0-pre.1", features = ["derive"] }

0 comments on commit c8df654

Please sign in to comment.