Skip to content

Commit

Permalink
crates: move debug-interface to crates directory
Browse files Browse the repository at this point in the history
  • Loading branch information
bmwill authored and bors-libra committed Dec 3, 2021
1 parent 6e8f81e commit 5f96305
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ resolver = "2"
members = [
"api",
"api/types",
"common/debug-interface",
"common/diemdoc",
"common/id-generator",
"common/logger",
Expand Down Expand Up @@ -32,6 +31,7 @@ members = [
"crates/bounded-executor",
"crates/channel",
"crates/crash-handler",
"crates/debug-interface",
"crates/diem-assets-proof",
"crates/diem-bitvec",
"crates/diem-client",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ tokio = { version = "1.8.1", features = ["full"] }
warp = "0.3.0"

diem-config = { path = "../../config" }
diem-logger = { path = "../logger" }
diem-metrics = { path = "../metrics" }
diem-logger = { path = "../../common/logger" }
diem-metrics = { path = "../../common/metrics" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
File renamed without changes.
2 changes: 1 addition & 1 deletion diem-node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ consensus-notifications = { path = "../state-sync/inter-component/consensus-noti
crash-handler = { path = "../crates/crash-handler" }
data-streaming-service = { path = "../state-sync/state-sync-v2/data-streaming-service" }
diem-infallible = { path = "../crates/diem-infallible" }
debug-interface = { path = "../common/debug-interface" }
debug-interface = { path = "../crates/debug-interface" }
event-notifications = { path = "../state-sync/inter-component/event-notifications" }
executor = { path = "../execution/executor" }
executor-types = { path = "../execution/executor-types" }
Expand Down
2 changes: 1 addition & 1 deletion testsuite/cluster-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ rusoto_s3 = "0.46.0"
chrono = "0.4.19"
toml = { version = "0.5.8", default-features = false }

debug-interface = { path = "../../common/debug-interface"}
debug-interface = { path = "../../crates/debug-interface"}
diem-client = { path = "../../crates/diem-client"}
diem-retrier = { path = "../../common/retrier" }
num_cpus = "1.13.0"
Expand Down
2 changes: 1 addition & 1 deletion testsuite/diem-swarm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ structopt = "0.3.21"
thiserror = "1.0.24"
diem-config = { path = "../../config", features = ["fuzzing"] }
diem-framework-releases = { path = "../../diem-move/diem-framework/DPN/releases"}
debug-interface = { path = "../../common/debug-interface" }
debug-interface = { path = "../../crates/debug-interface" }
diem-logger = { path = "../../common/logger" }
diem-genesis-tool = {path = "../../config/management/genesis", features = ["testing"] }
diem-temppath = { path = "../../common/temppath" }
Expand Down
2 changes: 1 addition & 1 deletion testsuite/forge/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ termcolor = "1.1.2"
tokio = { version = "1.8.1", features = ["full"] }
url = "2.2.2"

debug-interface = { path = "../../common/debug-interface" }
debug-interface = { path = "../../crates/debug-interface" }
diem-config = { path = "../../config" }
diem-framework-releases = { path = "../../diem-move/diem-framework/DPN/releases" }
diem-genesis-tool = { path = "../../config/management/genesis" }
Expand Down
2 changes: 1 addition & 1 deletion testsuite/smoke-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ serde_yaml = "0.8.17"
futures = "0.3.12"

backup-cli = { path = "../../storage/backup/backup-cli" }
debug-interface = { path = "../../common/debug-interface" }
debug-interface = { path = "../../crates/debug-interface" }
generate-key = { path = "../../config/generate-key" }
diem-genesis-tool = {path = "../../config/management/genesis", features = ["testing"] }
diem-global-constants = { path = "../../config/global-constants" }
Expand Down

0 comments on commit 5f96305

Please sign in to comment.