Skip to content

Commit

Permalink
crates: move diem-temppath 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 041c775 commit f98cb61
Show file tree
Hide file tree
Showing 37 changed files with 37 additions and 37 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ members = [
"common/rate-limiter",
"common/retrier",
"common/short-hex-str",
"common/temppath",
"config",
"config/generate-key",
"config/global-constants",
Expand All @@ -40,6 +39,7 @@ members = [
"crates/diem-infallible",
"crates/diem-json-rpc-client",
"crates/diem-rest-client",
"crates/diem-temppath",
"crates/diem-time-service",
"crates/diem-workspace-hack",
"crates/fallible",
Expand Down
2 changes: 1 addition & 1 deletion api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ diem-crypto = { path = "../crates/diem-crypto" }
diem-global-constants = { path = "../config/global-constants" }
diem-mempool = { path = "../mempool", features = ["fuzzing"] }
diem-secure-storage = { path = "../secure/storage" }
diem-temppath = { path = "../common/temppath" }
diem-temppath = { path = "../crates/diem-temppath" }
diem-genesis-tool = {path = "../config/management/genesis", features = ["testing"] }
diem-framework-releases = { path = "../diem-move/diem-framework/DPN/releases" }
diem-sdk = { path = "../sdk" }
Expand Down
2 changes: 1 addition & 1 deletion config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ diem-global-constants = { path = "./global-constants"}
diem-logger = { path = "../common/logger" }
diem-network-address-encryption = { path = "management/network-address-encryption" }
diem-secure-storage = { path = "../secure/storage" }
diem-temppath = { path = "../common/temppath" }
diem-temppath = { path = "../crates/diem-temppath" }
diem-types = { path = "../types" }
diem-workspace-hack = { path = "../crates/diem-workspace-hack" }
short-hex-str = { path = "../common/short-hex-str" }
Expand Down
2 changes: 1 addition & 1 deletion config/generate-key/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ rand = "0.8.3"

bcs = "0.1.2"
diem-crypto = { path = "../../crates/diem-crypto/"}
diem-temppath = { path = "../../common/temppath" }
diem-temppath = { path = "../../crates/diem-temppath" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
2 changes: 1 addition & 1 deletion config/management/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ diem-secure-storage = { path = "../../secure/storage" }
diem-time-service = { path = "../../crates/diem-time-service" }
diem-types = { path = "../../types" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
diem-temppath = { path = "../../common/temppath" }
diem-temppath = { path = "../../crates/diem-temppath" }
diem-transaction-builder = { path = "../../sdk/transaction-builder" }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion config/management/genesis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ diem-network-address-encryption = {path = "../network-address-encryption"}
diem-secure-storage = { path = "../../../secure/storage" }
diem-types = { path = "../../../types" }
diem-workspace-hack = { path = "../../../crates/diem-workspace-hack" }
diem-temppath = { path = "../../../common/temppath" }
diem-temppath = { path = "../../../crates/diem-temppath" }
diem-vm = { path = "../../../diem-move/diem-vm" }
diemdb = { path = "../../../storage/diemdb" }
storage-interface = { path = "../../../storage/storage-interface" }
Expand Down
2 changes: 1 addition & 1 deletion config/management/operational/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ diem-network-address-encryption = {path = "../network-address-encryption"}
diem-secure-storage = { path = "../../../secure/storage" }
diem-types = { path = "../../../types" }
diem-workspace-hack = { path = "../../../crates/diem-workspace-hack" }
diem-temppath = { path = "../../../common/temppath" }
diem-temppath = { path = "../../../crates/diem-temppath" }
fallible = { path = "../../../crates/fallible" }
netcore = { path = "../../../network/netcore" }
network = { path = "../../../network" }
Expand Down
2 changes: 1 addition & 1 deletion config/seed-peer-generator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ diem-config = { path = ".." }
diem-crypto = { path = "../../crates/diem-crypto" }
diem-client = { path = "../../crates/diem-client", features = ["blocking"], default-features = false }
diem-logger = { path = "../../common/logger" }
diem-temppath = { path = "../../common/temppath" }
diem-temppath = { path = "../../crates/diem-temppath" }
diem-types = { path = "../../types" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }

Expand Down
2 changes: 1 addition & 1 deletion consensus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ diem-mempool = { path = "../mempool" }
diem-metrics = { path = "../common/metrics" }
diem-infallible = { path = "../crates/diem-infallible" }
diem-secure-storage = { path = "../secure/storage" }
diem-temppath = { path = "../common/temppath" }
diem-temppath = { path = "../crates/diem-temppath" }
diem-types = { path = "../types" }
diem-vm = { path = "../diem-move/diem-vm" }
diem-workspace-hack = { path = "../crates/diem-workspace-hack" }
Expand Down
2 changes: 1 addition & 1 deletion consensus/safety-rules/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ diem-proptest-helpers = { path = "../../common/proptest-helpers", optional = tru
diem-secure-net = { path = "../../secure/net" }
diem-secure-push-metrics = { path = "../../secure/push-metrics" }
diem-secure-storage = { path = "../../secure/storage" }
diem-temppath = { path = "../../common/temppath" }
diem-temppath = { path = "../../crates/diem-temppath" }
diem-types = { path = "../../types" }
diem-vault-client = { path = "../../secure/storage/vault" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion diem-move/oncall-trainer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ diem-genesis-tool = { path = "../../config/management/genesis" }
diem-json-rpc-types = { path = "../../json-rpc/types" }
diem-types = { path = "../../types" }
diem-node = { path = "../../diem-node"}
diem-temppath = { path = "../../common/temppath" }
diem-temppath = { path = "../../crates/diem-temppath" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
2 changes: 1 addition & 1 deletion diem-node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ diem-logger = { path = "../common/logger" }
diem-mempool = { path = "../mempool" }
diem-metrics = { path = "../common/metrics" }
diem-secure-storage = { path = "../secure/storage" }
diem-temppath = { path = "../common/temppath" }
diem-temppath = { path = "../crates/diem-temppath" }
diem-time-service = { path = "../crates/diem-time-service" }
diem-types = { path = "../types" }
diem-vm = { path = "../diem-move/diem-vm" }
Expand Down
2 changes: 1 addition & 1 deletion execution/db-bootstrapper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ bcs = "0.1.2"
diemdb = { path = "../../storage/diemdb" }
diem-config = { path = "../../config" }
diem-crypto = { path = "../../crates/diem-crypto" }
diem-temppath = { path = "../../common/temppath" }
diem-temppath = { path = "../../crates/diem-temppath" }
diem-types = { path = "../../types" }
diem-vm = { path = "../../diem-move/diem-vm" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
Expand Down
2 changes: 1 addition & 1 deletion execution/execution-correctness/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ diem-logger = { path = "../../common/logger" }
diem-infallible = { path = "../../crates/diem-infallible" }
diem-secure-net = { path = "../../secure/net" }
diem-secure-storage = { path = "../../secure/storage" }
diem-temppath = { path = "../../common/temppath" }
diem-temppath = { path = "../../crates/diem-temppath" }
diem-types = { path = "../../types" }
diem-vm = { path = "../../diem-move/diem-vm" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
Expand Down
2 changes: 1 addition & 1 deletion execution/executor-benchmark/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ storage-interface = { path = "../../storage/storage-interface" }
diem-transaction-builder = { path = "../../sdk/transaction-builder" }

[dev-dependencies]
diem-temppath = { path = "../../common/temppath" }
diem-temppath = { path = "../../crates/diem-temppath" }

[features]
default = []
Expand Down
2 changes: 1 addition & 1 deletion execution/executor-test-helpers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ diemdb = { path = "../../storage/diemdb", features = ["fuzzing"] }
diem-config = { path = "../../config" }
diem-crypto = { path = "../../crates/diem-crypto" }
diem-genesis-tool = {path = "../../config/management/genesis", features = ["testing"] }
diem-temppath = { path = "../../common/temppath" }
diem-temppath = { path = "../../crates/diem-temppath" }
diem-types = { path = "../../types", features = ["fuzzing"] }
diem-vm = { path = "../../diem-move/diem-vm" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
Expand Down
2 changes: 1 addition & 1 deletion execution/executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ diem-framework-releases = { path = "../../diem-move/diem-framework/DPN/releases"
executor-test-helpers = { path = "../executor-test-helpers" }
diem-config = { path = "../../config" }
diem-genesis-tool = {path = "../../config/management/genesis", features = ["testing"] }
diem-temppath = { path = "../../common/temppath" }
diem-temppath = { path = "../../crates/diem-temppath" }
diemdb = { path = "../../storage/diemdb" }
move-ir-compiler = { path = "../../language/move-ir-compiler" }
storage-interface = { path = "../../storage/storage-interface", features=["fuzzing"] }
Expand Down
4 changes: 2 additions & 2 deletions json-rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ diem-mempool = { path = "../mempool" }
diem-metrics = { path = "../common/metrics" }
diem-proptest-helpers = { path = "../common/proptest-helpers", optional = true }
diem-types = { path = "../types" }
diem-temppath = { path = "../common/temppath", optional = true }
diem-temppath = { path = "../crates/diem-temppath", optional = true }
diem-workspace-hack = { path = "../crates/diem-workspace-hack" }
executor = { path = "../execution/executor" , optional = true}
executor-types = { path = "../execution/executor-types" , optional = true}
Expand All @@ -66,7 +66,7 @@ diem-genesis-tool = {path = "../config/management/genesis", features = ["testing
diem-client = { path = "../crates/diem-client" }
diem-mempool = { path = "../mempool", features = ["fuzzing"] }
diem-proptest-helpers = { path = "../common/proptest-helpers" }
diem-temppath = { path = "../common/temppath" }
diem-temppath = { path = "../crates/diem-temppath" }
diem-types = { path = "../types", features = ["fuzzing"] }
vm-validator = { path = "../vm-validator" }
diem-framework-releases= { path = "../diem-move/diem-framework/DPN/releases" }
Expand Down
2 changes: 1 addition & 1 deletion network/discovery/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ short-hex-str = { path = "../../common/short-hex-str" }

[dev-dependencies]
diem-config = { path = "../../config", features = ["testing"]}
diem-temppath = { path = "../../common/temppath" }
diem-temppath = { path = "../../crates/diem-temppath" }
netcore = { path = "../netcore", features = ["fuzzing"] }
rand = "0.8.3"
2 changes: 1 addition & 1 deletion secure/storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ diem-crypto = { path = "../../crates/diem-crypto" }
diem-github-client = { path = "github" }
diem-infallible = { path = "../../crates/diem-infallible" }
diem-logger = { path = "../../common/logger" }
diem-temppath = { path = "../../common/temppath" }
diem-temppath = { path = "../../crates/diem-temppath" }
diem-time-service = { path = "../../crates/diem-time-service" }
diem-vault-client = { path = "vault" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
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 @@ -30,7 +30,7 @@ bcs = "0.1.2"
claim = "0.5.0"

diem-crypto = { path = "../../../crates/diem-crypto" }
diem-temppath = { path = "../../../common/temppath" }
diem-temppath = { path = "../../../crates/diem-temppath" }
diem-vm = { path = "../../../diem-move/diem-vm" }
diemdb = { path = "../../../storage/diemdb" }
executor-test-helpers = { path = "../../../execution/executor-test-helpers" }
Expand Down
2 changes: 1 addition & 1 deletion state-sync/state-sync-v1/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ diem-logger = { path = "../../common/logger" }
diem-mempool = { path = "../../mempool"}
diem-metrics = { path = "../../common/metrics" }
diem-proptest-helpers = { path = "../../common/proptest-helpers", optional = true }
diem-temppath = { path = "../../common/temppath" }
diem-temppath = { path = "../../crates/diem-temppath" }
diem-types = { path = "../../types" }
diem-vm = { path = "../../diem-move/diem-vm" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
Expand Down
2 changes: 1 addition & 1 deletion state-sync/state-sync-v2/state-sync-driver/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ claim = "0.5.0"
channel = { path = "../../../crates/channel" }
diemdb = { path = "../../../storage/diemdb" }
diem-crypto = { path = "../../../crates/diem-crypto" }
diem-temppath = { path = "../../../common/temppath" }
diem-temppath = { path = "../../../crates/diem-temppath" }
diem-vm = { path = "../../../diem-move/diem-vm" }
executor-test-helpers = { path = "../../../execution/executor-test-helpers" }
vm-genesis = { path = "../../../diem-move/vm-genesis", features = ["fuzzing"] }
2 changes: 1 addition & 1 deletion state-sync/state-sync-v2/state-sync-multiplexer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ storage-interface = { path = "../../../storage/storage-interface" }
diem-crypto = { path = "../../../crates/diem-crypto" }
diem-genesis-tool = {path = "../../../config/management/genesis", features = ["testing"] }
diem-infallible = { path = "../../../crates/diem-infallible" }
diem-temppath = { path = "../../../common/temppath" }
diem-temppath = { path = "../../../crates/diem-temppath" }
diem-time-service = { path = "../../../crates/diem-time-service" }
diem-vm = { path = "../../../diem-move/diem-vm" }
diemdb = { path = "../../../storage/diemdb" }
Expand Down
2 changes: 1 addition & 1 deletion storage/backup/backup-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ diem-crypto = { path = "../../../crates/diem-crypto" }
diem-infallible = { path = "../../../crates/diem-infallible" }
diem-logger = { path = "../../../common/logger" }
diem-secure-push-metrics = { path = "../../../secure/push-metrics" }
diem-temppath = { path = "../../../common/temppath" }
diem-temppath = { path = "../../../crates/diem-temppath" }
diem-types = { path = "../../../types" }
diem-vm = { path = "../../../diem-move/diem-vm" }
diem-workspace-hack = { path = "../../../crates/diem-workspace-hack" }
Expand Down
2 changes: 1 addition & 1 deletion storage/backup/backup-service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ storage-interface = { path = "../../storage-interface" }
[dev-dependencies]
diemdb = { path = "../../diemdb", features = ["fuzzing"] }
diem-config = { path = "../../../config" }
diem-temppath = { path = "../../../common/temppath" }
diem-temppath = { path = "../../../crates/diem-temppath" }

reqwest = { version = "0.11.2", features = ["blocking", "json"], default_features = false }

Expand Down
4 changes: 2 additions & 2 deletions storage/diemdb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ diem-logger = { path = "../../common/logger" }
diem-metrics = { path = "../../common/metrics" }
diem-infallible = { path = "../../crates/diem-infallible" }
diem-proptest-helpers = { path = "../../common/proptest-helpers", optional = true }
diem-temppath = { path = "../../common/temppath", optional = true }
diem-temppath = { path = "../../crates/diem-temppath", optional = true }
diem-types = { path = "../../types" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
move-core-types = {path = "../../language/move-core/types"}
Expand All @@ -47,7 +47,7 @@ rand = "0.8.3"

diem-jellyfish-merkle = { path = "../jellyfish-merkle", features = ["fuzzing"] }
diem-proptest-helpers = { path = "../../common/proptest-helpers" }
diem-temppath = { path = "../../common/temppath" }
diem-temppath = { path = "../../crates/diem-temppath" }
diem-types = { path = "../../types", features = ["fuzzing"] }
schemadb = { path = "../schemadb", features = ["fuzzing"] }

Expand Down
2 changes: 1 addition & 1 deletion storage/schemadb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ features = ["lz4"]
[dev-dependencies]
byteorder = "1.4.3"
proptest = "1.0.0"
diem-temppath = { path = "../../common/temppath" }
diem-temppath = { path = "../../crates/diem-temppath" }

[features]
fuzzing = ["proptest"]
2 changes: 1 addition & 1 deletion storage/storage-service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ proptest = { version = "1.0.0", optional = true }
[dev-dependencies]
itertools = "0.10.0"
diemdb = { path = "../diemdb", features = ["fuzzing"] }
diem-temppath = { path = "../../common/temppath" }
diem-temppath = { path = "../../crates/diem-temppath" }
proptest = "1.0.0"
storage-client = { path = "../storage-client" }

Expand Down
2 changes: 1 addition & 1 deletion testsuite/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ diem-infallible = { path = "../../crates/diem-infallible" }
diem-logger = { path = "../../common/logger" }
diem-metrics = { path = "../../common/metrics" }
diem-types = { path = "../../types" }
diem-temppath = { path = "../../common/temppath/" }
diem-temppath = { path = "../../crates/diem-temppath/" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
diem-resource-viewer = { path = "../../diem-move/diem-resource-viewer" }
diem-framework = { path = "../../diem-move/diem-framework" }
Expand Down
2 changes: 1 addition & 1 deletion testsuite/cli/diem-wallet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ serde = "1.0.124"
sha2 = "0.9.3"
thiserror = "1.0.24"
diem-crypto = { path = "../../../crates/diem-crypto", features = ["fuzzing"] }
diem-temppath = { path = "../../../common/temppath/" }
diem-temppath = { path = "../../../crates/diem-temppath/" }
diem-types = { path = "../../../types" }
diem-workspace-hack = { path = "../../../crates/diem-workspace-hack" }
mirai-annotations = "1.10.1"
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 @@ -52,7 +52,7 @@ diem-node = { path = "../../diem-node" }
diem-operational-tool = {path = "../../config/management/operational", features = ["testing"] }
diem-secure-storage = { path = "../../secure/storage", features = ["testing"] }
diem-swarm = { path = "../diem-swarm" }
diem-temppath = { path = "../../common/temppath" }
diem-temppath = { path = "../../crates/diem-temppath" }
diem-time-service = { path = "../../crates/diem-time-service" }
diem-types = { path = "../../types", features = ["fuzzing"] }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
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 @@ -21,7 +21,7 @@ diem-framework-releases = { path = "../../diem-move/diem-framework/DPN/releases"
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" }
diem-temppath = { path = "../../crates/diem-temppath" }
diem-types = { path = "../../types" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
forge = { path = "../forge" }
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 @@ -24,7 +24,7 @@ diem-framework = { path = "../../diem-move/diem-framework" }
diem-framework-releases = { path = "../../diem-move/diem-framework/DPN/releases" }
diem-sdk = { path = "../../sdk" }
diem-rest-client = { path = "../../crates/diem-rest-client" }
diem-temppath = { path = "../../common/temppath" }
diem-temppath = { path = "../../crates/diem-temppath" }
diem-transaction-replay = { path = "../../diem-move/transaction-replay" }
move-command-line-common = { path = "../../language/move-command-line-common" }
move-ir-compiler = { path = "../../language/move-ir-compiler" }
Expand Down
2 changes: 1 addition & 1 deletion vm-validator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ rand = "0.8.3"
executor = { path = "../execution/executor" }
executor-test-helpers = { path = "../execution/executor-test-helpers" }
diem-crypto = { path = "../crates/diem-crypto", features = ["fuzzing"] }
diem-temppath = { path = "../common/temppath" }
diem-temppath = { path = "../crates/diem-temppath" }
diem-types = { path = "../types", features = ["fuzzing"] }
diem-vm = { path = "../diem-move/diem-vm" }
diemdb = { path = "../storage/diemdb", features = ["fuzzing"] }
Expand Down

0 comments on commit f98cb61

Please sign in to comment.