Skip to content

Commit

Permalink
verifier: move into crates directory
Browse files Browse the repository at this point in the history
  • Loading branch information
bmwill committed May 16, 2022
1 parent 0c6100a commit 4b2173d
Show file tree
Hide file tree
Showing 20 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ members = [
"crates/sui-config",
"crates/sui-network",
"crates/sui-types",
"crates/sui-verifier",
"crates/x",
"faucet",
"sui",
Expand All @@ -13,7 +14,6 @@ members = [
"sui_programmability/adapter/transactional-tests",
"sui_programmability/framework",
"sui_programmability/transactional-test-runner",
"sui_programmability/verifier",
"test_utils",
]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ move-core-types = { git = "https://github.com/move-language/move", rev = "1b2d3b
move-disassembler = { git = "https://github.com/move-language/move", rev = "1b2d3b4274345f5b4b6a1a1bde5aee452003ab5b" }
move-ir-types = { git = "https://github.com/move-language/move", rev = "1b2d3b4274345f5b4b6a1a1bde5aee452003ab5b" }

sui-types = { path = "../../crates/sui-types" }
sui-types = { path = "../sui-types" }
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion sui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ sui-framework = { path = "../sui_programmability/framework" }
sui-network = { path = "../crates/sui-network" }
sui-config = { path = "../crates/sui-config" }
sui-types = { path = "../crates/sui-types" }
sui-verifier = { path = "../sui_programmability/verifier" }
sui-verifier = { path = "../crates/sui-verifier" }
sui-open-rpc = { path = "open_rpc" }
sui-open-rpc-macros = { path = "open_rpc/macros" }

Expand Down
2 changes: 1 addition & 1 deletion sui_programmability/adapter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ move-vm-runtime = { git = "https://github.com/move-language/move", rev = "1b2d3b
move-vm-types = { git = "https://github.com/move-language/move", rev = "1b2d3b4274345f5b4b6a1a1bde5aee452003ab5b" }

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

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion sui_programmability/framework/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ smallvec = "1.8.0"
num_enum = "0.5.7"

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

move-binary-format = { git = "https://github.com/move-language/move", rev = "1b2d3b4274345f5b4b6a1a1bde5aee452003ab5b" }
move-bytecode-verifier = { git = "https://github.com/move-language/move", rev = "1b2d3b4274345f5b4b6a1a1bde5aee452003ab5b" }
Expand Down
2 changes: 1 addition & 1 deletion sui_programmability/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 = "../framework" }
sui-verifier = { path = "../verifier" }
sui-verifier = { path = "../../crates/sui-verifier" }
sui-types = { path = "../../crates/sui-types" }
sui-adapter = { path = "../adapter" }
sui_core = { path = "../../sui_core" }

0 comments on commit 4b2173d

Please sign in to comment.