enable webassembly support #164
Closed
Annotations
2 warnings
|
src/lib.rs#L169
warning: variables can be used directly in the `format!` string
--> src/builder.rs:169:38
|
169 | 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
|
169 - Proof(e) => f.write_str(&format!("Could not create proof: {}", e)),
169 + Proof(e) => f.write_str(&format!("Could not create proof: {e}")),
|
|
|
src/lib.rs#L139
warning: unused return value of `core::hash::Hasher::finish` that must be used
--> src/note/asset_base.rs:139:9
|
139 | h.finish();
| ^^^^^^^^^^
|
= note: `#[warn(unused_must_use)]` on by default
help: use `let _ = ...` to ignore the resulting value
|
139 | let _ = h.finish();
| +++++++
|
The logs for this run have expired and are no longer available.
Loading