Skip to content

Commit

Permalink
v0.1.1 (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
franziskuskiefer committed Jun 22, 2023
1 parent d0e2b5a commit c625314
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
12 changes: 7 additions & 5 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-pre.1"
version = "0.1.1"
authors = ["Franziskus Kiefer <franziskuskiefer@gmail.com>"]
edition = "2021"
license = "MPL-2.0"
Expand All @@ -13,24 +13,26 @@ 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-pre.4", features = ["derive"], optional = true }
tls_codec = { version = "0.3.0", features = ["derive"], optional = true }
zeroize = { version = "1.5", features = ["zeroize_derive"] }
hpke-rs-crypto = { version = "0.1.2-pre.1", path = "./traits" }
hpke-rs-crypto = { version = "0.1.2", path = "./traits" }

[features]
default = []
serialization = ["serde", "serde_json", "tls_codec", "tls_codec/serde"]
hazmat = []
hpke-test = []
hpke-test-prng = [] # ⚠️ Enable testing PRNG - DO NOT USE
hpke-test-prng = [] # ⚠️ Enable testing PRNG - DO NOT USE

[dev-dependencies]
serde_json = "1.0"
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-pre.1", path = "./rust_crypto_provider", features = ["deterministic-prng"] }
hpke-rs-rust-crypto = { version = "0.1.2", path = "./rust_crypto_provider", features = [
"deterministic-prng",
] }
# hpke-rs-evercrypt = { version = "0.1.3-pre.1", path = "./evercrypt_provider", features = ["deterministic-prng"] }
rand = { version = "0.8" }
getrandom = { version = "0.2", features = ["js"] }
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-pre.1"
version = "0.1.2"
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-pre.1", path = "../traits" }
hpke-rs-crypto = { version = "0.1.2", 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-pre.2"
version = "0.1.2"
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-pre.4", features = ["derive"] }
tls_codec = { version = "0.3.0", features = ["derive"] }

0 comments on commit c625314

Please sign in to comment.