Skip to content

Commit

Permalink
sui-storage: move into crates directory
Browse files Browse the repository at this point in the history
  • Loading branch information
bmwill committed May 23, 2022
1 parent 49c5f01 commit 16ad801
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 26 deletions.
40 changes: 20 additions & 20 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ members = [
"crates/sui-node",
"crates/sui-open-rpc",
"crates/sui-open-rpc-macros",
"crates/sui-storage",
"crates/sui-transactional-test-runner",
"crates/sui-types",
"crates/sui-verifier",
Expand All @@ -20,7 +21,6 @@ members = [
"crates/x",
"sui",
"sui_core",
"sui_storage",
]

[profile.release]
Expand Down
2 changes: 1 addition & 1 deletion crates/sui-node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ tracing = "0.1.34"

sui-config = { path = "../sui-config" }
sui_core = { path = "../../sui_core" }
sui_storage = { path = "../../sui_storage" }
sui-storage = { path = "../sui-storage" }
sui-gateway = { path = "../sui-gateway" }

telemetry-subscribers = { git = "https://github.com/MystenLabs/mysten-infra", rev = "7c247967e5a5abd59ecaa75bc62b05bcdf4503fe" }
Expand Down
4 changes: 2 additions & 2 deletions sui_storage/Cargo.toml → crates/sui-storage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "sui_storage"
name = "sui-storage"
version = "0.1.0"
authors = ["Mysten Labs <[email protected]>"]
license = "Apache-2.0"
Expand All @@ -15,7 +15,7 @@ tokio = { version = "1.17.0", features = ["full", "tracing"] }
rocksdb = "0.18.0"
tracing = { version = "0.1.31", features = ["log"] }

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

typed-store = { git = "https://github.com/MystenLabs/mysten-infra", rev = "7c247967e5a5abd59ecaa75bc62b05bcdf4503fe"}

Expand Down
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 @@ -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_storage = { path = "../sui_storage" }
sui-storage = { path = "../crates/sui-storage" }
sui-adapter = { path = "../crates/sui-adapter" }
sui-framework = { path = "../crates/sui-framework" }
sui-network = { path = "../crates/sui-network" }
Expand Down
2 changes: 1 addition & 1 deletion sui_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ sui-adapter = { path = "../crates/sui-adapter" }
sui-framework = { path = "../crates/sui-framework" }
sui-network = { path = "../crates/sui-network" }
sui-types = { path = "../crates/sui-types" }
sui_storage = { path = "../sui_storage" }
sui-storage = { path = "../crates/sui-storage" }
sui-config = { path = "../crates/sui-config" }
sui-json = { path = "../crates/sui-json" }

Expand Down

0 comments on commit 16ad801

Please sign in to comment.