Skip to content

Commit

Permalink
crates: move diem-id-generator 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 1c0f8b6 commit 073a53d
Show file tree
Hide file tree
Showing 9 changed files with 7 additions and 7 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/id-generator",
"common/logger",
"common/logger/derive",
"common/metrics",
Expand Down Expand Up @@ -38,6 +37,7 @@ members = [
"crates/diem-crypto-derive",
"crates/diem-documentation-tool",
"crates/diem-faucet",
"crates/diem-id-generator",
"crates/diem-infallible",
"crates/diem-json-rpc-client",
"crates/diem-rest-client",
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion json-rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ diem-client = { path = "../crates/diem-client", optional = true }
diem-config = { path = "../config" }
diem-crypto = { path = "../crates/diem-crypto" }
diemdb = { path = "../storage/diemdb", optional = true }
diem-id-generator = { path = "../common/id-generator" }
diem-id-generator = { path = "../crates/diem-id-generator" }
diem-json-rpc-types = { path = "./types", package = "diem-json-rpc-types" }
diem-infallible = { path = "../crates/diem-infallible" }
diem-logger = { path = "../common/logger" }
Expand Down
2 changes: 1 addition & 1 deletion mempool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ enum_dispatch = "0.3.5"
proptest = "1.0.0"

diem-config = { path = "../config", features = ["fuzzing"] }
diem-id-generator = { path = "../common/id-generator" }
diem-id-generator = { path = "../crates/diem-id-generator" }
network = { path = "../network", features = ["fuzzing"] }
storage-interface = { path = "../storage/storage-interface", features = ["fuzzing"] }

Expand Down
2 changes: 1 addition & 1 deletion network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ bcs = "0.1.2"
diem-config = { path = "../config" }
diem-crypto = { path = "../crates/diem-crypto" }
diem-crypto-derive = { path = "../crates/diem-crypto-derive" }
diem-id-generator = { path = "../common/id-generator" }
diem-id-generator = { path = "../crates/diem-id-generator" }
diem-infallible = { path = "../crates/diem-infallible" }
diem-logger = { path = "../common/logger" }
diem-metrics = { path = "../common/metrics" }
Expand Down
2 changes: 1 addition & 1 deletion state-sync/diem-data-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ thiserror = "1.0.24"

diem-config = { path = "../../config" }
diem-crypto = { path = "../../crates/diem-crypto" }
diem-id-generator = { path = "../../common/id-generator" }
diem-id-generator = { path = "../../crates/diem-id-generator" }
diem-infallible = { path = "../../crates/diem-infallible" }
diem-logger = { path = "../../common/logger" }
diem-time-service = { path = "../../common/time-service", features = ["async"] }
Expand Down
2 changes: 1 addition & 1 deletion state-sync/inter-component/event-notifications/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ thiserror = "1.0.24"
tokio = { version = "1.8.1" }

channel = { path = "../../../crates/channel" }
diem-id-generator = { path = "../../../common/id-generator" }
diem-id-generator = { path = "../../../crates/diem-id-generator" }
diem-infallible = { path = "../../../crates/diem-infallible" }
diem-types = { path = "../../../types" }
diem-workspace-hack = { path = "../../../crates/diem-workspace-hack" }
Expand Down
2 changes: 1 addition & 1 deletion state-sync/state-sync-v2/data-streaming-service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ channel = { path = "../../../crates/channel" }
diem-config = { path = "../../../config" }
diem-crypto = { path = "../../../crates/diem-crypto" }
diem-data-client = { path = "../../diem-data-client" }
diem-id-generator = { path = "../../../common/id-generator" }
diem-id-generator = { path = "../../../crates/diem-id-generator" }
diem-infallible = { path = "../../../crates/diem-infallible" }
diem-logger = { path = "../../../common/logger" }
diem-metrics = { path = "../../../common/metrics" }
Expand Down

0 comments on commit 073a53d

Please sign in to comment.