Skip to content

Commit

Permalink
Merge pull request #50 from LFDT-Lockness/point-from-raw
Browse files Browse the repository at this point in the history
Add FromRaw impl for some curve points
  • Loading branch information
maurges authored Jan 16, 2025
2 parents c4a67e0 + d1aff99 commit 963f404
Show file tree
Hide file tree
Showing 9 changed files with 2,484 additions and 9 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Run some workflows on ubuntu 22.04 because ubuntu-latest broke some system
# libs in late 2024

name: Rust

on:
Expand Down Expand Up @@ -38,7 +41,7 @@ jobs:
- name: Check all-features
run: cargo check -p generic-ec --all-features
check-all:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
Expand All @@ -47,7 +50,7 @@ jobs:
- name: Check everything
run: cargo check --all-targets
test:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
Expand Down Expand Up @@ -80,7 +83,7 @@ jobs:
- name: Run clippy no-std
run: cargo clippy -p generic-ec --no-default-features -- -D clippy::all
clippy-tests:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
Expand All @@ -89,7 +92,7 @@ jobs:
- name: Run clippy tests
run: cargo clippy --workspace --tests --all-features -- -D clippy::all
check-doc:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: dtolnay/rust-toolchain@nightly
- uses: actions/checkout@v3
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/target
/wasm/nostd/target
Cargo.lock

/.idea

Expand Down
Loading

0 comments on commit 963f404

Please sign in to comment.