From 7812d37839f40c2d324e05fadd3cc26a34cb1631 Mon Sep 17 00:00:00 2001 From: moana Date: Tue, 13 Aug 2024 11:56:32 +0200 Subject: [PATCH] Add wallet-core workspace member --- Cargo.toml | 1 + Makefile | 2 ++ 2 files changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 9e71872413..cdd1f29631 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,6 +13,7 @@ members = [ "contracts/license", "execution-core", + "wallet-core", "rusk-prover", diff --git a/Makefile b/Makefile index 0a010f2340..3c7e1a64cc 100644 --- a/Makefile +++ b/Makefile @@ -34,6 +34,7 @@ test: keys wasm ## Run the tests $(MAKE) -C ./node-data $@ $(MAKE) -C ./consensus $@ $(MAKE) -C ./node $@ + $(MAKE) -C ./wallet-core $@ $(MAKE) -C ./rusk/ $@ clippy: ## Run clippy @@ -46,6 +47,7 @@ clippy: ## Run clippy $(MAKE) -C ./node-data $@ $(MAKE) -C ./consensus $@ $(MAKE) -C ./node $@ + $(MAKE) -C ./wallet-core $@ $(MAKE) -C ./rusk/ $@ doc: ## Run doc gen