Skip to content

Commit

Permalink
chore: move sui-adapter into the crates directory
Browse files Browse the repository at this point in the history
  • Loading branch information
bmwill committed May 16, 2022
1 parent 1cce6e9 commit 4b80b89
Show file tree
Hide file tree
Showing 12 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[workspace]
members = [
"crates/sui-adapter",
"crates/sui-adapter-transactional-tests",
"crates/sui-config",
"crates/sui-network",
Expand All @@ -12,7 +13,6 @@ members = [
"sui/open_rpc",
"sui/open_rpc/macros",
"sui_core",
"sui_programmability/adapter",
"sui_programmability/framework",
"test_utils",
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ move-cli = { git = "https://github.com/move-language/move", rev = "1b2d3b4274345
move-vm-runtime = { git = "https://github.com/move-language/move", rev = "1b2d3b4274345f5b4b6a1a1bde5aee452003ab5b" }
move-vm-types = { git = "https://github.com/move-language/move", rev = "1b2d3b4274345f5b4b6a1a1bde5aee452003ab5b" }

sui-framework = { path = "../framework" }
sui-framework = { path = "../../sui_programmability/framework" }
sui-verifier = { path = "../../crates/sui-verifier" }
sui-types = { path = "../../crates/sui-types" }

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion crates/sui-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ move-binary-format = { git = "https://github.com/move-language/move", rev = "1b2
move-package = { git = "https://github.com/move-language/move", rev = "1b2d3b4274345f5b4b6a1a1bde5aee452003ab5b" }

sui-framework = { path = "../../sui_programmability/framework" }
sui-adapter = { path = "../../sui_programmability/adapter" }
sui-adapter = { path = "../sui-adapter" }
sui-types = { path = "../sui-types" }
6 changes: 3 additions & 3 deletions crates/sui-transactional-test-runner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ move-vm-types = { git = "https://github.com/move-language/move", rev = "1b2d3b42


sui-framework = { path = "../../sui_programmability/framework" }
sui-verifier = { path = "../../crates/sui-verifier" }
sui-types = { path = "../../crates/sui-types" }
sui-adapter = { path = "../../sui_programmability/adapter" }
sui-verifier = { path = "../sui-verifier" }
sui-types = { path = "../sui-types" }
sui-adapter = { path = "../sui-adapter" }
sui_core = { path = "../../sui_core" }
2 changes: 1 addition & 1 deletion sui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ mysten-network = { git = "https://github.com/MystenLabs/mysten-infra", rev = "7c

bcs = "0.1.3"
sui_core = { path = "../sui_core" }
sui-adapter = { path = "../sui_programmability/adapter" }
sui-adapter = { path = "../crates/sui-adapter" }
sui-framework = { path = "../sui_programmability/framework" }
sui-network = { path = "../crates/sui-network" }
sui-config = { path = "../crates/sui-config" }
Expand Down
2 changes: 1 addition & 1 deletion sui_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ mysten-network = { git = "https://github.com/MystenLabs/mysten-infra", rev = "7c
prometheus_exporter = "0.8.4"
once_cell = "1.10.0"

sui-adapter = { path = "../sui_programmability/adapter" }
sui-adapter = { path = "../crates/sui-adapter" }
sui-framework = { path = "../sui_programmability/framework" }
sui-network = { path = "../crates/sui-network" }
sui-types = { path = "../crates/sui-types" }
Expand Down
2 changes: 1 addition & 1 deletion test_utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ tracing = { version = "0.1.34", features = ["log"] }
tempfile = "3.3.0"
bcs = "0.1.3"

sui-adapter = { path = "../sui_programmability/adapter" }
sui-adapter = { path = "../crates/sui-adapter" }
sui-framework = { path = "../sui_programmability/framework" }
move-package = { git = "https://github.com/move-language/move", rev = "1b2d3b4274345f5b4b6a1a1bde5aee452003ab5b" }
move-core-types = { git = "https://github.com/move-language/move", rev = "1b2d3b4274345f5b4b6a1a1bde5aee452003ab5b", features = ["address20"] }
Expand Down

0 comments on commit 4b80b89

Please sign in to comment.