Skip to content

Commit

Permalink
hpke-rs v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
franziskuskiefer committed Feb 7, 2022
1 parent 0a39f16 commit 568f028
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 12 deletions.
14 changes: 8 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hpke-rs"
version = "0.1.0-pre.2"
version = "0.1.0"
authors = ["Franziskus Kiefer <franziskuskiefer@gmail.com>"]
edition = "2021"
license = "MPL-2.0"
Expand All @@ -13,9 +13,11 @@ 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.2.0-pre.4", features = ["derive"], optional = true }
zeroize = { version = "1.4", features = ["zeroize_derive"] } # 1.5 is incompatible with most of Rust Crypto right now.
hpke-rs-crypto = { version = "0.1.1-pre.1", path = "./traits" }
tls_codec = { version = "0.2.0", features = ["derive"], optional = true }
# zeroize 1.5 is incompatible with most of Rust Crypto right now.
# See https://github.com/RustCrypto/utils/issues/723
zeroize = { version = "1.4", features = ["zeroize_derive"] }
hpke-rs-crypto = { version = "0.1.1", path = "./traits" }

[features]
default = []
Expand All @@ -30,8 +32,8 @@ 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.1-pre.2", path = "./rust_crypto_provider", features = ["deterministic-prng"] }
hpke-rs-evercrypt = { version = "0.1.1-pre.2", path = "./evercrypt_provider", features = ["deterministic-prng"] }
hpke-rs-rust-crypto = { version = "0.1.1", path = "./rust_crypto_provider", features = ["deterministic-prng"] }
hpke-rs-evercrypt = { version = "0.1.1", path = "./evercrypt_provider", features = ["deterministic-prng"] }
rand = { version = "0.8" }
getrandom = { version = "0.2", features = ["js"] }
pretty_env_logger = "0.4"
Expand Down
4 changes: 2 additions & 2 deletions evercrypt_provider/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hpke-rs-evercrypt"
version = "0.1.1-pre.2"
version = "0.1.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.1-pre.1", path = "../traits" }
hpke-rs-crypto = { version = "0.1.1", path = "../traits" }
# Evercrypt
evercrypt = { version = "0.0.10", features = ["serialization"] }
# Randomness
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.1-pre.2"
version = "0.1.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.1-pre.2", path = "../traits" }
hpke-rs-crypto = { version = "0.1.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.1-pre.2"
version = "0.1.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.2.0-pre.4", features = ["derive"] }
tls_codec = { version = "0.2.0", features = ["derive"] }

0 comments on commit 568f028

Please sign in to comment.