-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0a39f16
commit 568f028
Showing
4 changed files
with
14 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 <[email protected]>"] | ||
edition = "2021" | ||
license = "MPL-2.0" | ||
|
@@ -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 = [] | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 <[email protected]>"] | ||
edition = "2021" | ||
license = "MPL-2.0" | ||
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 <[email protected]>"] | ||
edition = "2021" | ||
license = "MPL-2.0" | ||
|
@@ -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" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 <[email protected]>"] | ||
edition = "2021" | ||
license = "MPL-2.0" | ||
|
@@ -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"] } |