Skip to content

Update to `zcash/zcash_note_encryption@4958c7defeed6c5b04a48ab5b8287a… #391

Update to `zcash/zcash_note_encryption@4958c7defeed6c5b04a48ab5b8287a…

Update to `zcash/zcash_note_encryption@4958c7defeed6c5b04a48ab5b8287a… #391

Triggered via push June 11, 2025 19:37
Status Success
Total duration 34s
Artifacts

lints-beta.yml

on: push
Clippy (beta)
29s
Clippy (beta)
Fit to window
Zoom out
Zoom in

Annotations

6 warnings
/home/runner/work/orchard/orchard/src/lib.rs#L150
variables can be used directly in the `format!` string
/home/runner/work/orchard/orchard/src/lib.rs#L9
doc list item overindented
/home/runner/work/orchard/orchard/src/lib.rs#L10
doc list item overindented
doc list item overindented: src/lib.rs#L10
warning: doc list item overindented --> src/value.rs:10:5 | 10 | //! [`Bundle::value_balance`] and [`Builder::value_balance`]. | ^^^ help: try using ` ` (2 spaces) | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_overindented_list_items
doc list item overindented: src/lib.rs#L9
warning: doc list item overindented --> src/value.rs:9:5 | 9 | //! by a user-defined type parameter on [`Bundle`], returned by | ^^^ help: try using ` ` (2 spaces) | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_overindented_list_items = note: `#[warn(clippy::doc_overindented_list_items)]` on by default
variables can be used directly in the `format!` string: src/lib.rs#L150
warning: variables can be used directly in the `format!` string --> src/builder.rs:150:38 | 150 | Proof(e) => f.write_str(&format!("Could not create proof: {}", e)), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args = note: `#[warn(clippy::uninlined_format_args)]` on by default help: change this to | 150 - Proof(e) => f.write_str(&format!("Could not create proof: {}", e)), 150 + Proof(e) => f.write_str(&format!("Could not create proof: {e}")), |