Skip to content

Commit

Permalink
Merge pull request #1846 from multiversx/chain-dir
Browse files Browse the repository at this point in the history
`chain` directory
  • Loading branch information
andrei-marinica authored Nov 6, 2024
2 parents b974bab + 9b1bf97 commit bb81524
Show file tree
Hide file tree
Showing 132 changed files with 12 additions and 13 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ members = [
"framework/snippets",
"framework/wasm-adapter",

"chain/core",
"chain/vm",

"sdk/core",
"sdk/dapp",
"sdk/http",
Expand All @@ -23,9 +26,6 @@ members = [
# "tools/plotter",
"tools/interactor-system-func-calls/",

"vm-core",
"vm",

"contracts/modules",

"contracts/core/price-aggregator",
Expand Down
2 changes: 1 addition & 1 deletion vm-core/Cargo.toml → chain/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ bitflags = "=2.6.0"

[dependencies.multiversx-sc-codec]
version = "=0.21.0"
path = "../data/codec"
path = "../../data/codec"
features = ["derive"]
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion vm/Cargo.toml → chain/vm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ ed25519-dalek = "2.1.0"

[dependencies.multiversx-chain-core]
version = "=0.10.0"
path = "../vm-core"
path = "../core"

[dependencies.multiversx-chain-vm-executor]
version = "0.2.0"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion contracts/examples/adder/interact/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "basic-interact"
version = "0.0.0"
authors = ["Ovidiu Stinga <ovidiu.stinga@multiversx.com>"]
authors = ["MultiversX <contact@multiversx.com>"]
edition = "2021"
publish = false

Expand Down
2 changes: 1 addition & 1 deletion contracts/examples/ping-pong-egld/interactor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ping-pong-egld-interact"
version = "0.0.0"
authors = ["Ovidiu Stinga <ovidiu.stinga@multiversx.com>"]
authors = ["MultiversX <contact@multiversx.com>"]
edition = "2021"
publish = false

Expand Down
2 changes: 1 addition & 1 deletion contracts/feature-tests/basic-features/interact/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "basic-features-interact"
version = "0.0.0"
authors = ["Ovidiu Stinga <ovidiu.stinga@multiversx.com>"]
authors = ["MultiversX <contact@multiversx.com>"]
edition = "2021"
publish = false

Expand Down
2 changes: 1 addition & 1 deletion framework/base/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ features = ["derive"]

[dependencies.multiversx-chain-core]
version = "=0.10.0"
path = "../../vm-core"
path = "../../chain/core"
2 changes: 1 addition & 1 deletion framework/scenario/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ version = "0.2.0"

[dependencies.multiversx-chain-vm]
version = "=0.10.0"
path = "../../vm"
path = "../../chain/vm"
2 changes: 1 addition & 1 deletion sdk/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ uuid = {version = "1.10.0", features = ["v4"]}

[dependencies.multiversx-chain-core]
version = "=0.10.0"
path = "../../vm-core"
path = "../../chain/core"
2 changes: 1 addition & 1 deletion tools/rust-debugger/format-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ path = "../../../framework/scenario"

[dependencies.multiversx-chain-vm]
version = "=0.10.0"
path = "../../../vm"
path = "../../../chain/vm"

[dev-dependencies]
glob = "0.3.0"
Expand Down
1 change: 0 additions & 1 deletion tools/rust-debugger/format-tests/tests/run_format_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
use std::{io::BufRead, path::Path, process::Command};

#[test]
#[ignore = "TODO: fix LLDB integration"]
fn run_format_tests() {
let home_dir = home::home_dir().unwrap();

Expand Down

0 comments on commit bb81524

Please sign in to comment.