From 08f501df0d252162d81f95c9a485143a28efb016 Mon Sep 17 00:00:00 2001 From: moana Date: Mon, 16 Dec 2024 16:35:02 +0100 Subject: [PATCH] workspace: Rename `execution-core` to `dusk-core` --- Cargo.toml | 4 ++-- Makefile | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 49c2bda40..a59104a40 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ members = [ "contracts/stake", "contracts/transfer", - "execution-core", + "core", "wallet-core", "rusk-prover", @@ -33,7 +33,7 @@ resolver = "2" [workspace.dependencies] # Workspace internal dependencies dusk-consensus = { version = "0.1.1-rc.3", path = "./consensus/" } -execution-core = { version = "0.1.0", path = "./execution-core/" } +dusk-core = { version = "0.1.0", path = "./core/" } node = { version = "0.1.0", path = "./node/" } node-data = { version = "0.1.0", path = "./node-data/" } rusk-abi = { version = "0.13.0-rc.0", path = "./rusk-abi/", default-features = false } diff --git a/Makefile b/Makefile index cfbadb88b..93ae39d6a 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ contracts: ## Execute the test for all contracts test: keys wasm ## Run the tests $(MAKE) -C ./rusk-abi/ $@ - $(MAKE) -C ./execution-core/ $@ + $(MAKE) -C ./core/ $@ $(MAKE) state $(MAKE) -j1 -C ./contracts $@ $(MAKE) -C ./rusk-recovery $@ @@ -36,7 +36,7 @@ test: keys wasm ## Run the tests $(MAKE) -C ./rusk-wallet/ $@ clippy: ## Run clippy - $(MAKE) -C ./execution-core/ $@ + $(MAKE) -C ./core/ $@ $(MAKE) -j1 -C ./contracts $@ $(MAKE) -C ./rusk-abi $@ $(MAKE) -C ./rusk-profile $@ @@ -50,7 +50,7 @@ clippy: ## Run clippy $(MAKE) -C ./rusk-wallet/ $@ doc: ## Run doc gen - $(MAKE) -C ./execution-core/ $@ + $(MAKE) -C ./core/ $@ $(MAKE) -C ./consensus $@ $(MAKE) -j1 -C ./contracts $@ $(MAKE) -C ./node $@