Skip to content

Commit

Permalink
workspace: Rename execution-core to dusk-core
Browse files Browse the repository at this point in the history
  • Loading branch information
moCello committed Dec 19, 2024
1 parent e873a42 commit ba6102d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ members = [
"contracts/stake",
"contracts/transfer",

"execution-core",
"core",
"wallet-core",

"rusk-prover",
Expand All @@ -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 }
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 $@
Expand All @@ -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 $@
Expand All @@ -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 $@
Expand Down

0 comments on commit ba6102d

Please sign in to comment.