From f8f6aa35fea45bdd3708a4cd991b8f45087b02e5 Mon Sep 17 00:00:00 2001 From: maxrobot Date: Wed, 31 Jul 2024 14:49:36 +0100 Subject: [PATCH] fix: lint error --- .cargo/config.toml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .cargo/config.toml diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 00000000..96f7a505 --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,9 @@ +[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" + +[net] +git-fetch-with-cli = true