Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ssmiler committed Dec 19, 2024
1 parent 9feb8a2 commit 26aac1b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/curve25519-dalek.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ jobs:

# Default no_std test only tests using serial across all crates
build-nostd-fiat:
enabled: false
name: Build fiat on no_std target (thumbv7em-none-eabi)
runs-on: ubuntu-latest
strategy:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ed25519-dalek.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- uses: actions/checkout@v3
# Re-resolve Cargo.lock with minimal versions
- uses: dtolnay/rust-toolchain@nightly
- run: cargo update -Z minimal-versions
- run: cargo update minimal-versions
# Now check that `cargo build` works with respect to the oldest possible
# deps and the stated MSRV
- uses: dtolnay/rust-toolchain@1.60.0
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/workspace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ jobs:

# Test no_std with serial (default)
build-nostd-serial:
enabled: false
name: Build serial on no_std target (thumbv7em-none-eabi)
runs-on: ubuntu-latest
strategy:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/x25519-dalek.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- uses: actions/checkout@v3
# Re-resolve Cargo.lock with minimal versions
- uses: dtolnay/rust-toolchain@nightly
- run: cargo update -Z minimal-versions
- run: cargo update minimal-versions
# Now check that `cargo build` works with respect to the oldest possible
# deps and the stated MSRV
- uses: dtolnay/rust-toolchain@1.60.0
Expand Down
2 changes: 2 additions & 0 deletions curve25519-dalek/src/encodable_curve.rs
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,9 @@ mod tests {
use elliptic_curve::bigint::U256;
#[cfg(feature = "group")]
use elliptic_curve::scalar::IsHigh;
#[cfg(feature = "group")]
use elliptic_curve::Curve;
#[cfg(feature = "group")]
use subtle::Choice;

#[test]
Expand Down

0 comments on commit 26aac1b

Please sign in to comment.