Skip to content

Commit

Permalink
Attempt to re-enable the armv7 target
Browse files Browse the repository at this point in the history
  • Loading branch information
bifurcation committed Mar 2, 2024
1 parent cc8b274 commit cb8c992
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/ml-kem.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,7 @@ jobs:
- ${{needs.set-msrv.outputs.msrv}}
- stable
target:
# XXX(bifurcation) We have a dependency on `sha3`, which has a
# transitive `std` dependency by default. It appears that we can turn
# this off via Cargo.
# - thumbv7em-none-eabi
- thumbv7em-none-eabi
- wasm32-unknown-unknown
steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 2 additions & 1 deletion ml-kem/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ rust-version = "1.74"
license = "Apache-2.0 OR MIT"

[features]
default = []
default = ["std"]
std = ["sha3/std"]
deterministic = [] # Expose deterministic generation and encapsulation functions

[dependencies]
Expand Down

0 comments on commit cb8c992

Please sign in to comment.