From 1f3766f5e9b92e585b45020d803679485fa231b8 Mon Sep 17 00:00:00 2001 From: maxrobot Date: Tue, 24 Sep 2024 14:38:15 +0100 Subject: [PATCH] feat: update config.toml --- .cargo/config.toml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .cargo/config.toml diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 0000000..8d4bc73 --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,6 @@ +[alias] +wasm = "build --release --target wasm32-unknown-unknown" +wasm-debug = "build --target wasm32-unknown-unknown" +unit-test = "test --lib" +integration-test = "test --test integration" +schema = "run --example schema"