Skip to content

Bump version to v0.1.3 #12

Bump version to v0.1.3

Bump version to v0.1.3 #12

GitHub Actions / clippy failed Dec 6, 2024 in 0s

clippy

2 errors

Details

Results

Message level Amount
Internal compiler error 0
Error 2
Warning 0
Note 0
Help 0

Versions

  • rustc 1.83.0 (90b35a623 2024-11-26)
  • cargo 1.83.0 (5ffbef321 2024-10-29)
  • clippy 0.1.83 (90b35a6 2024-11-26)

Annotations

Check failure on line 208 in src/lib.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

backticks are unbalanced

error: backticks are unbalanced
   --> src/lib.rs:206:9
    |
206 |       /// Create a permutation from a permutation of a smaller or equal number of elements
    |  _________^
207 | |     /// This will permute the first `M` elements and leave the other untouched
208 | |     /// Panics if `M`` > `ELEMENTS`
    | |___________________________________^
    |
    = help: a backtick may be missing a pair
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown
    = note: `#[deny(clippy::doc_markdown)]` implied by `#[deny(warnings)]`

Check failure on line 4 in src/solver.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

empty line after doc comment

error: empty line after doc comment
 --> src/solver.rs:3:1
  |
3 | / /// Can be used to solve a permutation, finding the the shortest combination of a fixed set of permutations that leads to it
4 | |
  | |_
5 |   pub struct SolveContext<I: Inner, const ELEMENTS: usize> {
  |   -------------------------------------------------------- the comment documents this struct
  |
  = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_doc_comments
note: the lint level is defined here
 --> src/lib.rs:4:9
  |
4 | #![deny(warnings, dead_code, unused_imports, unused_mut)]
  |         ^^^^^^^^
  = note: `#[deny(clippy::empty_line_after_doc_comments)]` implied by `#[deny(warnings)]`
  = help: if the empty line is unintentional remove it