Update to `zcash/zcash_note_encryption@4958c7defeed6c5b04a48ab5b8287a… #391
Annotations
3 warnings
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
|
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
|
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}")),
|
|
The logs for this run have expired and are no longer available.
Loading