-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bump to 0.5.0; don't enable frost-rerandomized with std (#48)
* bump to 0.4.1; don't enable frost-rerandomized with std * Apply suggestions from code review Co-authored-by: str4d <[email protected]> * add rust-version to Cargo.toml * use published version of frost-rerandomized --------- Co-authored-by: str4d <[email protected]>
- Loading branch information
1 parent
3ac90e2
commit 50620fc
Showing
3 changed files
with
16 additions
and
7 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
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,15 +1,17 @@ | ||
[package] | ||
name = "reddsa" | ||
edition = "2021" | ||
rust-version = "1.60" | ||
# When releasing to crates.io: | ||
# - Update CHANGELOG.md | ||
# - Create git tag. | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
authors = [ | ||
"Henry de Valence <[email protected]>", | ||
"Deirdre Connolly <[email protected]>", | ||
"Chelsea Komlo <[email protected]>", | ||
"Jack Grigg <[email protected]>", | ||
"Conrado Gouvea <[email protected]>", | ||
] | ||
readme = "README.md" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -31,7 +33,7 @@ pasta_curves = { version = "0.5", default-features = false } | |
rand_core = { version = "0.6", default-features = false } | ||
serde = { version = "1", optional = true, features = ["derive"] } | ||
thiserror = { version = "1.0", optional = true } | ||
frost-rerandomized = { git = "https://github.com/ZcashFoundation/frost.git", rev = "ffe5c57a1729c933b3ec8766ec96d2e6976a7ece", optional = true } | ||
frost-rerandomized = { version = "0.1", optional = true } | ||
|
||
[dependencies.zeroize] | ||
version = "1" | ||
|
@@ -48,7 +50,7 @@ proptest = "1.0" | |
rand = "0.8" | ||
rand_chacha = "0.3" | ||
serde_json = "1.0" | ||
frost-rerandomized = { git = "https://github.com/ZcashFoundation/frost.git", rev = "ffe5c57a1729c933b3ec8766ec96d2e6976a7ece", features=["test-impl"] } | ||
frost-rerandomized = { version = "0.1", features=["test-impl"] } | ||
|
||
# `alloc` is only used in test code | ||
[dev-dependencies.pasta_curves] | ||
|
@@ -58,10 +60,10 @@ features = ["alloc"] | |
|
||
[features] | ||
std = ["blake2b_simd/std", "thiserror", "zeroize", "alloc", | ||
"serde", "frost-rerandomized"] # conditional compilation for serde not complete (issue #9) | ||
"serde"] # conditional compilation for serde not complete (issue #9) | ||
alloc = ["hex"] | ||
nightly = [] | ||
frost = ["frost-rerandomized"] | ||
frost = ["std", "frost-rerandomized"] | ||
default = ["std"] | ||
|
||
[[bench]] | ||
|
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