Implement no_std
support via a default-enabled std
feature flag.
#218
Annotations
3 errors and 2 warnings
Run Clippy:
src/lib.rs#L196
error: this expression borrows a value the compiler would automatically borrow
--> src/note_encryption.rs:196:9
|
196 | (&mut input[12..20]).copy_from_slice(¬e.value().inner().to_le_bytes());
| ^^^^^^^^^^^^^^^^^^^^ help: change this to: `input[12..20]`
|
= note: `-D clippy::needless-borrow` implied by `-D warnings`
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
|
Run Clippy:
src/lib.rs#L88
error: this expression creates a reference which is immediately dereferenced by the compiler
--> src/pedersen_hash.rs:88:13
|
88 | &generators.next().expect("we don't have enough generators");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: change this to: `generators.next().expect("we don't have enough generators")`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
|
Run Clippy
error: aborting due to 2 previous errors
|
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Run Clippy
The `deny` input is deprecated in v1.4 and can be used within the `check-args` input
|
Loading