-
Updated
Mar 11, 2022 - Rust
cargo-subcommand
Here are 71 public repositories matching this topic...
-
Updated
Feb 11, 2022 - Rust
-
Updated
Apr 11, 2022 - Rust
-
Updated
Apr 11, 2022 - Rust
-
Updated
Mar 9, 2022 - Rust
- Derive serialization for the configuration keys.
- Add the serialized configuration to the fingerprint hash.
-
Updated
Feb 8, 2022 - Rust
Run tests on CI
We currently only run cargo build, cargo doc and something like cargo fmt --verify on CI. We also need to run the unit tests now that we have them, via cargo test.
-
Updated
Jan 22, 2022 - Rust
-
Updated
Nov 5, 2021 - Rust
-
Updated
Feb 19, 2022 - Rust
CLI improvements
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]
-
Updated
Apr 6, 2022 - Rust
-
Updated
Dec 19, 2019 - Rust
Fix clippy issues
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
-
Updated
Apr 10, 2022 - Rust
-
Updated
Mar 4, 2022 - Rust
As of now the project uses unwrap() methods which may lead to crashes. We should get rid of all of them.
-
Updated
Mar 26, 2022 - Rust
-
Updated
Apr 11, 2022 - TypeScript
-
Updated
Apr 11, 2022 - Rust
-
Updated
Apr 28, 2018 - Rust
-
Updated
Feb 19, 2020 - Rust
-
Updated
Feb 12, 2022 - Rust
Improve this page
Add a description, image, and links to the cargo-subcommand topic page so that developers can more easily learn about it.
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."
A
deny.tomlwithout an[advisories]section will still check theRustSecwhen runningcargo deny check advisories. This is great and the correct behaviour imo, but it would be good to document the default value for all configuration option and afaict it is not.Thanks! :)