From 18abd08f25d9d4cbd6491faea61e81d5f7cc57e8 Mon Sep 17 00:00:00 2001 From: hey-ewan Date: Fri, 7 Mar 2025 01:54:39 +0100 Subject: [PATCH] chore: init cargo config --- execution/.cargo/config.toml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 execution/.cargo/config.toml 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"