diff --git a/execution/.cargo/config.toml b/execution/.cargo/config.toml new file mode 100644 index 0000000..3ad8131 --- /dev/null +++ b/execution/.cargo/config.toml @@ -0,0 +1,7 @@ +[alias] +bb = "build --all --all-features --release" +be = "build --examples --target wasm32-unknown-unknown --release" +tt = "nextest run --release --all --no-fail-fast" +te = "nextest run --workspace --no-fail-fast --release --examples" +cc = "clippy --all -- -D warnings" +docs = "doc --workspace --document-private-items --all-features --open"