Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
os: [ ubuntu-latest, windows-latest, macOS-latest ]
steps:
- uses: actions/checkout@v4
- name: Run tests
Expand All @@ -26,7 +26,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
os: [ ubuntu-latest, windows-latest, macOS-latest ]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
- name: Add ff as a dependency of the synthetic crate
working-directory: ./ci-build
# run: cargo add --no-default-features --path ../crate_root
run: sed -i 's;\[dependencies\];\[dependencies\]\nff = { path = "../crate_root", default-features = false };g' ./Cargo.toml
run: sed -i 's;\[dependencies\];\[dependencies\]\nrustcrypto-ff = { path = "../crate_root", default-features = false };g' ./Cargo.toml
- name: Add target
working-directory: ./ci-build
run: rustup target add ${{ matrix.target }}
Expand All @@ -80,7 +80,7 @@ jobs:
- name: Enable the bits feature of ff
working-directory: ./ci-build
# run: cargo add --no-default-features --features bits --path ../crate_root
run: sed -i 's;ff = { path = "../crate_root", default-features = false };ff = { path = "../crate_root", default-features = false, features = ["bits"] };g' ./Cargo.toml
run: sed -i 's;rustcrypto-ff = { path = "../crate_root", default-features = false };rustcrypto-ff = { path = "../crate_root", default-features = false, features = ["bits"] };g' ./Cargo.toml
- name: Build for target with the bits feature
working-directory: ./ci-build
run: cargo build --verbose --target ${{ matrix.target }}
Expand Down
52 changes: 26 additions & 26 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ff"
version = "0.14.0-pre.0"
name = "rustcrypto-ff"
version = "0.14.0-pre"
authors = [
"Sean Bowe <[email protected]>",
"Jack Grigg <[email protected]>",
Expand All @@ -17,7 +17,7 @@ repository = "https://github.com/zkcrypto/ff"
[dependencies]
bitvec = { version = "1", default-features = false, optional = true }
byteorder = { version = "1", default-features = false, optional = true }
ff_derive = { version = "=0.14.0-pre.0", path = "ff_derive", optional = true }
ff_derive = { version = "=0.14.0-pre", package = "rustcrypto-ff_derive", path = "ff_derive", optional = true }
rand_core = { version = "0.9", default-features = false }
subtle = { version = "2.2.1", default-features = false, features = ["i128"] }

Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# ff
# RustCrypto: ff

`ff` is a finite field library written in pure Rust, with no `unsafe{}` code.

This is a fork of https://github.com/zkcrypto/ff

## RFC process

This crate follows the [zkcrypto RFC process](https://zkcrypto.github.io/rfcs/).
Expand Down
4 changes: 2 additions & 2 deletions ff_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ff_derive"
version = "0.14.0-pre.0"
name = "rustcrypto-ff_derive"
version = "0.14.0-pre"
authors = [
"Sean Bowe <[email protected]>",
"Jack Grigg <[email protected]>",
Expand Down
Loading