Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into refactor-bytes-rm-a…
Browse files Browse the repository at this point in the history
…lloy
  • Loading branch information
jacobkaufmann committed Mar 13, 2024
2 parents 4757ad0 + 148b4e7 commit bedd74e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ jobs:
- name: format
run: cargo fmt --all --check
- name: clippy
run: cargo clippy --all --all-targets --all-features --verbose -- -D warnings
run: cargo clippy --all --all-targets --all-features --verbose -- -W clippy::std_instead_of_core -D warnings
4 changes: 2 additions & 2 deletions src/bls.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
use core::slice;
use std::{
use core::{
cmp,
mem::MaybeUninit,
ops::{Add, Div, Mul, Neg, Shl, ShlAssign, Shr, ShrAssign, Sub},
slice,
};

use blst::{
Expand Down
2 changes: 1 addition & 1 deletion src/math.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use std::fmt::Debug;
use core::fmt::Debug;

use crate::bls::Fr;

Expand Down

0 comments on commit bedd74e

Please sign in to comment.