-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
113 changed files
with
1,818 additions
and
3,185 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
version: 2 | ||
|
||
updates: | ||
- package-ecosystem: "cargo" | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
|
||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
*.rs.bk | ||
target | ||
artifacts | ||
corpus | ||
target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -euxo pipefail | ||
|
||
cargo fuzz run --features libfuzzer-sys/link_libfuzzer --fuzz-dir mop-fuzz dr_matrix -- -max_len=32 -runs=10000 | ||
cargo fuzz run --features libfuzzer-sys/link_libfuzzer --fuzz-dir mop-fuzz gp -- -max_len=32 -runs=10000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -euxo pipefail | ||
|
||
cargo install rust-tools --git https://github.com/c410-f3r/regular-crates | ||
|
||
rt='rust-tools --template you-rust' | ||
|
||
export CARGO_TARGET_DIR="$($rt target-dir)" | ||
export RUST_BACKTRACE=1 | ||
export RUSTFLAGS="$($rt rust-flags '' -Dmissing_docs,-Dunstable_features,-Dunused_crate_dependencies,-Dvariant_size_differences)" | ||
|
||
$rt rustfmt | ||
#$rt clippy | ||
|
||
$rt test-generic mop | ||
$rt test-with-features mop ndstruct | ||
$rt test-with-features mop rand | ||
$rt test-with-features mop rayon | ||
$rt test-with-features mop serde | ||
$rt test-with-features mop std | ||
$rt test-with-features mop wasm-bindgen |
Oops, something went wrong.