-
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
111 changed files
with
1,801 additions
and
3,177 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
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 |
File renamed without changes.
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,20 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -euxo pipefail | ||
|
||
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.