Skip to content
#

cargo-subcommand

Here are 71 public repositories matching this topic...

xd009642
xd009642 commented Feb 13, 2022

So a pattern I've seen a number of places in rust code (and have in my own code in places) is:

impl SomeStruct {
	pub fn new() -> Self {
	    Self::default()
    }
}

In cargo-mutants it will take this function and apply the Default mutagen to it creating code that is equivalent to the source code and then register as not caught. This could be solved by #[mutants::skip]

enhancement good first issue
cargo-valgrind
jfrimmel
jfrimmel commented Feb 24, 2022

Currently each PR has the following issue, which should be fixed:

Output of cargo clippy

    Checking cargo-valgrind v2.0.2 (/home/runner/work/cargo-valgrind/cargo-valgrind)
warning: consider adding a `;` to the last statement for consistent formatting
  --> src/panic.rs:76:13
   |
76 |             old_hook(panic)
   |             ^^^^^^^^^^^^^^^ help: add a `;` here: `old_hook(p
good first issue

Improve this page

Add a description, image, and links to the cargo-subcommand topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the cargo-subcommand topic, visit your repo's landing page and select "manage topics."

Learn more