-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bump versions to 2.0.0-rc.0 * simplify all features test * remove build all features test for now
- Loading branch information
1 parent
e7b631a
commit f95aeb2
Showing
10 changed files
with
51 additions
and
51 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 |
---|---|---|
|
@@ -38,20 +38,25 @@ jobs: | |
- uses: dtolnay/[email protected] | ||
- run: cargo build --all-features | ||
|
||
test_all_features: | ||
name: test all features combinations | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
- uses: dtolnay/rust-toolchain@stable | ||
- run: cargo install cargo-all-features | ||
# We check and then test because some test dependencies could help | ||
# a bugged build work, while a regular build would fail. | ||
- run: cargo check-all-features --release | ||
# Note that this also tests each crate separately, which also helps | ||
# catching some issues. | ||
- run: cargo test-all-features --release | ||
# TODO: this is filling up the disk space in CI. See if there is a way to | ||
# workaround it. | ||
|
||
# build_all_features: | ||
# name: build all features combinations | ||
# runs-on: ubuntu-latest | ||
|
||
# steps: | ||
# - uses: actions/[email protected] | ||
# - uses: dtolnay/rust-toolchain@stable | ||
# - run: cargo install cargo-all-features | ||
# # We check and then test because some test dependencies could help | ||
# # a bugged build work, while a regular build would fail. | ||
# # Note that this also builds each crate separately, which also helps | ||
# # catching some issues. | ||
# - run: cargo check-all-features | ||
# # Build all tests. We don't run them to save time, since it's unlikely | ||
# # that tests would fail due to feature combinations. | ||
# - run: cargo test-all-features --no-run | ||
|
||
build_no_std: | ||
name: build with no_std | ||
|
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
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ edition = "2021" | |
# When releasing to crates.io: | ||
# - Update CHANGELOG.md | ||
# - Create git tag. | ||
version = "1.0.0" | ||
version = "2.0.0-rc.0" | ||
authors = [ | ||
"Deirdre Connolly <[email protected]>", | ||
"Chelsea Komlo <[email protected]>", | ||
|
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ edition = "2021" | |
# - Update html_root_url | ||
# - Update CHANGELOG.md | ||
# - Create git tag. | ||
version = "1.0.0" | ||
version = "2.0.0-rc.0" | ||
authors = [ | ||
"Deirdre Connolly <[email protected]>", | ||
"Chelsea Komlo <[email protected]>", | ||
|
@@ -25,15 +25,15 @@ rustdoc-args = ["--cfg", "docsrs"] | |
[dependencies] | ||
curve25519-dalek = { version = "=4.1.3", features = ["rand_core"] } | ||
document-features = "0.2.7" | ||
frost-core = { path = "../frost-core", version = "1.0.0", default-features = false } | ||
frost-rerandomized = { path = "../frost-rerandomized", version = "1.0.0", default-features = false } | ||
frost-core = { path = "../frost-core", version = "2.0.0-rc.0", default-features = false } | ||
frost-rerandomized = { path = "../frost-rerandomized", version = "2.0.0-rc.0", default-features = false } | ||
rand_core = "0.6" | ||
sha2 = { version = "0.10.2", default-features = false } | ||
|
||
[dev-dependencies] | ||
criterion = "0.5" | ||
frost-core = { path = "../frost-core", version = "1.0.0", features = ["test-impl"] } | ||
frost-rerandomized = { path = "../frost-rerandomized", version = "1.0.0", features = ["test-impl"] } | ||
frost-core = { path = "../frost-core", version = "2.0.0-rc.0", features = ["test-impl"] } | ||
frost-rerandomized = { path = "../frost-rerandomized", version = "2.0.0-rc.0", features = ["test-impl"] } | ||
ed25519-dalek = "2.0.0" | ||
insta = { version = "1.31.0", features = ["yaml"] } | ||
hex = { version = "0.4.3", default-features = false, features = ["alloc"] } | ||
|
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ edition = "2021" | |
# When releasing to crates.io: | ||
# - Update CHANGELOG.md | ||
# - Create git tag. | ||
version = "1.0.0" | ||
version = "2.0.0-rc.0" | ||
authors = [ | ||
"Deirdre Connolly <[email protected]>", | ||
"Chelsea Komlo <[email protected]>", | ||
|
@@ -24,15 +24,15 @@ rustdoc-args = ["--cfg", "docsrs"] | |
[dependencies] | ||
document-features = "0.2.7" | ||
ed448-goldilocks = { version = "0.9.0" } | ||
frost-core = { path = "../frost-core", version = "1.0.0", default-features = false } | ||
frost-rerandomized = { path = "../frost-rerandomized", version = "1.0.0", default-features = false } | ||
frost-core = { path = "../frost-core", version = "2.0.0-rc.0", default-features = false } | ||
frost-rerandomized = { path = "../frost-rerandomized", version = "2.0.0-rc.0", default-features = false } | ||
rand_core = "0.6" | ||
sha3 = { version = "0.10.6", default-features = false } | ||
|
||
[dev-dependencies] | ||
criterion = "0.5" | ||
frost-core = { path = "../frost-core", version = "1.0.0", features = ["test-impl"] } | ||
frost-rerandomized = { path = "../frost-rerandomized", version = "1.0.0", features = ["test-impl"] } | ||
frost-core = { path = "../frost-core", version = "2.0.0-rc.0", features = ["test-impl"] } | ||
frost-rerandomized = { path = "../frost-rerandomized", version = "2.0.0-rc.0", features = ["test-impl"] } | ||
lazy_static = "1.4" | ||
insta = { version = "1.31.0", features = ["yaml"] } | ||
hex = { version = "0.4.3", default-features = false, features = ["alloc"] } | ||
|
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ edition = "2021" | |
# - Update html_root_url | ||
# - Update CHANGELOG.md | ||
# - Create git tag. | ||
version = "1.0.0" | ||
version = "2.0.0-rc.0" | ||
authors = [ | ||
"Deirdre Connolly <[email protected]>", | ||
"Chelsea Komlo <[email protected]>", | ||
|
@@ -25,15 +25,15 @@ rustdoc-args = ["--cfg", "docsrs"] | |
[dependencies] | ||
document-features = "0.2.7" | ||
p256 = { version = "0.13.0", features = ["hash2curve"], default-features = false } | ||
frost-core = { path = "../frost-core", version = "1.0.0", default-features = false } | ||
frost-rerandomized = { path = "../frost-rerandomized", version = "1.0.0", default-features = false } | ||
frost-core = { path = "../frost-core", version = "2.0.0-rc.0", default-features = false } | ||
frost-rerandomized = { path = "../frost-rerandomized", version = "2.0.0-rc.0", default-features = false } | ||
rand_core = "0.6" | ||
sha2 = { version = "0.10.2", default-features = false } | ||
|
||
[dev-dependencies] | ||
criterion = "0.5" | ||
frost-core = { path = "../frost-core", version = "1.0.0", features = ["test-impl"] } | ||
frost-rerandomized = { path = "../frost-rerandomized", version = "1.0.0", features = ["test-impl"] } | ||
frost-core = { path = "../frost-core", version = "2.0.0-rc.0", features = ["test-impl"] } | ||
frost-rerandomized = { path = "../frost-rerandomized", version = "2.0.0-rc.0", features = ["test-impl"] } | ||
insta = { version = "1.31.0", features = ["yaml"] } | ||
hex = { version = "0.4.3", default-features = false, features = ["alloc"] } | ||
lazy_static = "1.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 |
---|---|---|
|
@@ -5,7 +5,7 @@ edition = "2021" | |
# - Update html_root_url | ||
# - Update CHANGELOG.md | ||
# - Create git tag. | ||
version = "1.0.0" | ||
version = "2.0.0-rc.0" | ||
authors = [ | ||
"Deirdre Connolly <[email protected]>", | ||
"Chelsea Komlo <[email protected]>", | ||
|
@@ -25,7 +25,7 @@ rustdoc-args = ["--cfg", "docsrs"] | |
[dependencies] | ||
derive-getters = "0.4.0" | ||
document-features = "0.2.7" | ||
frost-core = { path = "../frost-core", version = "1.0.0", features = [ | ||
frost-core = { path = "../frost-core", version = "2.0.0-rc.0", features = [ | ||
"internals" | ||
], default-features = false } | ||
hex = { version = "0.4.3", default-features = false, features = ["alloc"] } | ||
|
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ edition = "2021" | |
# - Update html_root_url | ||
# - Update CHANGELOG.md | ||
# - Create git tag. | ||
version = "1.0.0" | ||
version = "2.0.0-rc.0" | ||
authors = ["Deirdre Connolly <[email protected]>", "Chelsea Komlo <[email protected]>", "Conrado Gouvea <[email protected]>"] | ||
readme = "README.md" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -21,15 +21,15 @@ rustdoc-args = ["--cfg", "docsrs"] | |
[dependencies] | ||
curve25519-dalek = { version = "=4.1.3", features = ["rand_core"] } | ||
document-features = "0.2.7" | ||
frost-core = { path = "../frost-core", version = "1.0.0", default-features = false } | ||
frost-rerandomized = { path = "../frost-rerandomized", version = "1.0.0", default-features = false } | ||
frost-core = { path = "../frost-core", version = "2.0.0-rc.0", default-features = false } | ||
frost-rerandomized = { path = "../frost-rerandomized", version = "2.0.0-rc.0", default-features = false } | ||
rand_core = "0.6" | ||
sha2 = { version = "0.10.2", default-features = false } | ||
|
||
[dev-dependencies] | ||
criterion = { version = "0.5", features = ["html_reports"] } | ||
frost-core = { path = "../frost-core", version = "1.0.0", features = ["test-impl"] } | ||
frost-rerandomized = { path = "../frost-rerandomized", version = "1.0.0", features = ["test-impl"] } | ||
frost-core = { path = "../frost-core", version = "2.0.0-rc.0", features = ["test-impl"] } | ||
frost-rerandomized = { path = "../frost-rerandomized", version = "2.0.0-rc.0", features = ["test-impl"] } | ||
insta = { version = "1.31.0", features = ["yaml"] } | ||
hex = { version = "0.4.3", default-features = false, features = ["alloc"] } | ||
lazy_static = "1.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 |
---|---|---|
|
@@ -4,7 +4,7 @@ edition = "2021" | |
# When releasing to crates.io: | ||
# - Update CHANGELOG.md | ||
# - Create git tag. | ||
version = "1.0.0" | ||
version = "2.0.0-rc.0" | ||
authors = [ | ||
"Deirdre Connolly <[email protected]>", | ||
"Chelsea Komlo <[email protected]>", | ||
|
@@ -23,16 +23,16 @@ rustdoc-args = ["--cfg", "docsrs"] | |
|
||
[dependencies] | ||
document-features = "0.2.7" | ||
frost-core = { path = "../frost-core", version = "1.0.0", default-features = false } | ||
frost-rerandomized = { path = "../frost-rerandomized", version = "1.0.0", default-features = false } | ||
frost-core = { path = "../frost-core", version = "2.0.0-rc.0", default-features = false } | ||
frost-rerandomized = { path = "../frost-rerandomized", version = "2.0.0-rc.0", default-features = false } | ||
k256 = { version = "0.13.0", features = ["arithmetic", "expose-field", "hash2curve"], default-features = false } | ||
rand_core = "0.6" | ||
sha2 = { version = "0.10.2", default-features = false } | ||
|
||
[dev-dependencies] | ||
criterion = "0.5" | ||
frost-core = { path = "../frost-core", version = "1.0.0", features = ["test-impl"] } | ||
frost-rerandomized = { path = "../frost-rerandomized", version = "1.0.0", features = ["test-impl"] } | ||
frost-core = { path = "../frost-core", version = "2.0.0-rc.0", features = ["test-impl"] } | ||
frost-rerandomized = { path = "../frost-rerandomized", version = "2.0.0-rc.0", features = ["test-impl"] } | ||
insta = { version = "1.31.0", features = ["yaml"] } | ||
hex = { version = "0.4.3", default-features = false, features = ["alloc"] } | ||
lazy_static = "1.4" | ||
|