From 2d1ebcac79f1e845a2a736c693ee9a6226f8e73f Mon Sep 17 00:00:00 2001 From: Mikhail Zabaluev Date: Mon, 11 Dec 2023 13:26:53 +0200 Subject: [PATCH] Update crate names in cargo config --- .cargo/config | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.cargo/config b/.cargo/config index 44cee77f..7e0adebe 100644 --- a/.cargo/config +++ b/.cargo/config @@ -1,7 +1,7 @@ [alias] build-all = "build --workspace --all-targets --" -build-wasm-tendermint = "build -p tendermint --manifest-path tendermint/Cargo.toml --target wasm32-unknown-unknown --release --no-default-features --" -build-wasm-light-client = "build -p tendermint-light-client --manifest-path light-client/Cargo.toml --target wasm32-unknown-unknown --release --no-default-features --" +build-wasm-cometbft = "build -p cometbft --manifest-path cometbft/Cargo.toml --target wasm32-unknown-unknown --release --no-default-features --" +build-wasm-light-client = "build -p cometbft-light-client --manifest-path light-client/Cargo.toml --target wasm32-unknown-unknown --release --no-default-features --" build-abci = "build --manifest-path abci/Cargo.toml --bin kvstore-rs --features binary,kvstore-app" build-tools = "build --manifest-path tools/Cargo.toml --all-features --all-targets --workspace" test-all-features = "test --all-features --no-fail-fast"