Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add FromRaw impl for some curve points #50

Merged
merged 8 commits into from
Jan 16, 2025
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
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
Loading