Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ jobs:
crate:
# Crates with no-std feature
- { name: "groupmap", path: "groupmap" }
- { name: "mina-curves", path: "curves" }
- { name: "mina-hasher", path: "hasher" } # https://github.com/o1-labs/mina-rust/issues/1994
- { name: "mina-poseidon", path: "poseidon" } # https://github.com/o1-labs/mina-rust/issues/1996
- { name: "mina-signer", path: "signer" } # https://github.com/o1-labs/mina-rust/issues/1995
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,13 @@ and this project adheres to
- Add `no_std` support
([#3415](https://github.com/o1-labs/proof-systems/pull/3415))

### [mina-curves](./curves)

#### Added

- Add `no_std` support
([#3416](https://github.com/o1-labs/proof-systems/pull/3416))

### [mina-poseidon](./poseidon)

#### Added
Expand Down
2 changes: 2 additions & 0 deletions curves/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
#![no_std]

pub mod named;
pub mod pasta;
Loading