Skip to content

Remove dev-only numeric-extension patterns mistakenly committed to .gitignore - #198

Merged
dmidem merged 1 commit into
zsa1from
remove-gitignore-unwanted-lines
Nov 3, 2025
Merged

Remove dev-only numeric-extension patterns mistakenly committed to .gitignore#198
dmidem merged 1 commit into
zsa1from
remove-gitignore-unwanted-lines

Remove dev-only numeric-extension patterns mistakenly committed to .g…

59d048f
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
GitHub Actions / Clippy Result (stable) succeeded Nov 2, 2025 in 17s

Clippy (Stable ~ Linux/x86_64)

Clippy was successful!

Details

Running cargo clippy took roughly ~17349ms to complete

  • Working Directory: repository directory

Annotations

Check warning on line 166 in /home/runner/work/orchard/orchard/src/lib.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy Result (stable)

/home/runner/work/orchard/orchard/src/lib.rs#L166

doc list item overindented
Raw output
warning: doc list item overindented
   --> src/issuance.rs:166:9
    |
166 |     ///    Pallas curve.
    |         ^^^ help: try using `  ` (2 spaces)
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/beta/index.html#doc_overindented_list_items
    = note: `#[warn(clippy::doc_overindented_list_items)]` on by default

Check warning on line 149 in /home/runner/work/orchard/orchard/src/lib.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy Result (stable)

/home/runner/work/orchard/orchard/src/lib.rs#L149

unused return value of `core::hash::Hasher::finish` that must be used
Raw output
warning: unused return value of `core::hash::Hasher::finish` that must be used
   --> src/note/asset_base.rs:149:9
    |
149 |         h.finish();
    |         ^^^^^^^^^^
    |
    = note: `#[warn(unused_must_use)]` (part of `#[warn(unused)]`) on by default
help: use `let _ = ...` to ignore the resulting value
    |
149 |         let _ = h.finish();
    |         +++++++