Skip to content

Commit

Permalink
crates: move diem-workspace-hack to crates directory
Browse files Browse the repository at this point in the history
  • Loading branch information
bmwill authored and bors-libra committed Dec 2, 2021
1 parent 942830c commit 0655876
Show file tree
Hide file tree
Showing 200 changed files with 195 additions and 195 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ members = [
"common/short-hex-str",
"common/temppath",
"common/time-service",
"common/workspace-hack",
"config",
"config/generate-key",
"config/global-constants",
Expand All @@ -44,6 +43,7 @@ members = [
"crates/diem-faucet",
"crates/diem-json-rpc-client",
"crates/diem-rest-client",
"crates/diem-workspace-hack",
"crates/proxy",
"crates/swiss-knife",
"crates/transaction-emitter",
Expand Down
2 changes: 1 addition & 1 deletion api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ diem-logger = { path = "../common/logger" }
diem-mempool = { path = "../mempool"}
diem-metrics = { path = "../common/metrics" }
diem-types = { path = "../types" }
diem-workspace-hack = { path = "../common/workspace-hack" }
diem-workspace-hack = { path = "../crates/diem-workspace-hack" }
diem-api-types = { path = "./types", package = "diem-api-types" }
storage-interface = { path = "../storage/storage-interface" }
move-core-types = { path = "../language/move-core/types" }
Expand Down
2 changes: 1 addition & 1 deletion api/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ warp = { version = "0.3.0", features = ["default"] }
diem-crypto = { path = "../../crates/diem-crypto" }
diem-transaction-builder = { path = "../../sdk/transaction-builder" }
diem-types = { path = "../../types" }
diem-workspace-hack = { path = "../../common/workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
move-binary-format = { path = "../../language/move-binary-format" }
move-core-types = { path = "../../language/move-core/types" }
resource-viewer = { path = "../../language/tools/resource-viewer" }
Expand Down
2 changes: 1 addition & 1 deletion common/bitvec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ publish = false
edition = "2018"

[dependencies]
diem-workspace-hack = { path = "../workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
proptest = { version = "1.0.0", default-features = true, optional = true }
proptest-derive = { version = "0.3.0", optional = true }
serde = { version = "1.0.124", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion common/bounded-executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ edition = "2018"

[dependencies]
futures = "0.3.12"
diem-workspace-hack = { path = "../workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
tokio = { version = "1.8.1", features = ["sync"] }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion common/channel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ anyhow = "1.0.38"
futures = "0.3.12"
diem-metrics = { path = "../metrics" }
diem-infallible = { path = "../infallible" }
diem-workspace-hack = { path = "../workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }

[dev-dependencies]
diem-types = { path = "../../types" }
Expand Down
2 changes: 1 addition & 1 deletion common/channel/many-keys-stress-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ edition = "2018"
[dependencies]
futures = "0.3.12"
channel = { path = "../" }
diem-workspace-hack = { path = "../../workspace-hack" }
diem-workspace-hack = { path = "../../../crates/diem-workspace-hack" }
structopt = "0.3.21"
2 changes: 1 addition & 1 deletion common/crash-handler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ backtrace = "0.3.56"
toml = "0.5.8"

diem-logger = { path = "../logger" }
diem-workspace-hack = { path = "../workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
serde = { version = "1.0.124", features = ["derive"] }
2 changes: 1 addition & 1 deletion common/debug-interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ warp = "0.3.0"
diem-config = { path = "../../config" }
diem-logger = { path = "../logger" }
diem-metrics = { path = "../metrics" }
diem-workspace-hack = { path = "../workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
2 changes: 1 addition & 1 deletion common/diemdoc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ regex = "1.4.3"
structopt = "0.3.21"
once_cell = "1.7.2"

diem-workspace-hack = { path = "../workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }

[dev-dependencies]
serde = { version = "1.0.124", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion common/fallible/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ edition = "2018"
[dependencies]
thiserror = "1.0"

diem-workspace-hack = { path = "../workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
2 changes: 1 addition & 1 deletion common/id-generator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ publish = false
edition = "2018"

[dependencies]
diem-workspace-hack = { path = "../workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
2 changes: 1 addition & 1 deletion common/infallible/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ publish = false
edition = "2018"

[dependencies]
diem-workspace-hack = { path = "../workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
2 changes: 1 addition & 1 deletion common/logger/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ erased-serde = "0.3.13"
hostname = "0.3.1"
diem-log-derive = { path = "derive" }
diem-infallible = { path = "../infallible" }
diem-workspace-hack = { path = "../workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
once_cell = "1.7.2"
serde = { version = "1.0.124", features = ["derive"] }
serde_json = "1.0.64"
Expand Down
2 changes: 1 addition & 1 deletion common/logger/derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ edition = "2018"
proc-macro = true

[dependencies]
diem-workspace-hack = { path = "../../workspace-hack" }
diem-workspace-hack = { path = "../../../crates/diem-workspace-hack" }
syn = { version = "1.0.64", features = ["extra-traits"] }
quote = "1.0.9"
proc-macro2 = "1.0.24"
2 changes: 1 addition & 1 deletion common/metrics-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ publish = false
edition = "2018"

[dependencies]
diem-workspace-hack = { path = "../workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
prometheus = { version = "0.12.0", default-features = false }
2 changes: 1 addition & 1 deletion common/metrics/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ tokio = { version = "1.8.1", features = ["full"] }

diem-logger = { path = "../logger" }
diem-metrics-core = { path = "../metrics-core" }
diem-workspace-hack = { path = "../workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }

[dev-dependencies]
rusty-fork = "0.3.0"
Expand Down
2 changes: 1 addition & 1 deletion common/num-variants/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ proc-macro = true
syn = "1.0.64"
quote = "1.0.9"
proc-macro2 = "1.0.24"
diem-workspace-hack = { path = "../workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
2 changes: 1 addition & 1 deletion common/proptest-helpers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ edition = "2018"

[dependencies]
crossbeam = "0.8.0"
diem-workspace-hack = { path = "../workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
proptest = "1.0.0"
proptest-derive = "0.3.0"
2 changes: 1 addition & 1 deletion common/rate-limiter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ edition = "2018"

[dependencies]
diem-infallible = { path= "../infallible" }
diem-workspace-hack = { path = "../workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
diem-logger = { path = "../logger" }
diem-metrics = { path = "../metrics" }
futures = "0.3.12"
Expand Down
2 changes: 1 addition & 1 deletion common/retrier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ publish = false
edition = "2018"

[dependencies]
diem-workspace-hack = { path = "../workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
tokio = { version = "1.8.1", features = ["time"] }
diem-logger = { path = "../logger"}
2 changes: 1 addition & 1 deletion common/short-hex-str/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ serde = { version = "1.0.124", default-features = false }
static_assertions = "1.1.0"
thiserror = "1.0.24"

diem-workspace-hack = { path = "../workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }

[dev-dependencies]
hex = "0.4.3"
Expand Down
2 changes: 1 addition & 1 deletion common/temppath/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ edition = "2018"

[dependencies]
hex = "0.4.3"
diem-workspace-hack = { path = "../workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
rand = "0.8.3"
2 changes: 1 addition & 1 deletion common/time-service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ thiserror = "1.0.24"
tokio = { version = "1.8.1", features = ["macros", "rt-multi-thread", "time"], optional = true }

diem-infallible = { path = "../infallible" }
diem-workspace-hack = { path = "../workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }

[dev-dependencies]
futures = "0.3.12"
Expand Down
2 changes: 1 addition & 1 deletion config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ diem-network-address-encryption = { path = "management/network-address-encryptio
diem-secure-storage = { path = "../secure/storage" }
diem-temppath = { path = "../common/temppath" }
diem-types = { path = "../types" }
diem-workspace-hack = { path = "../common/workspace-hack" }
diem-workspace-hack = { path = "../crates/diem-workspace-hack" }
short-hex-str = { path = "../common/short-hex-str" }

[dev-dependencies]
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 @@ -15,4 +15,4 @@ rand = "0.8.3"
bcs = "0.1.2"
diem-crypto = { path = "../../crates/diem-crypto/"}
diem-temppath = { path = "../../common/temppath" }
diem-workspace-hack = { path = "../../common/workspace-hack" }
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 @@ -26,7 +26,7 @@ diem-network-address-encryption = {path = "network-address-encryption"}
diem-secure-storage = { path = "../../secure/storage" }
diem-time-service = { path = "../../common/time-service" }
diem-types = { path = "../../types" }
diem-workspace-hack = { path = "../../common/workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
diem-temppath = { path = "../../common/temppath" }
diem-transaction-builder = { path = "../../sdk/transaction-builder" }

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 @@ -29,7 +29,7 @@ diem-management = { path = ".." }
diem-network-address-encryption = {path = "../network-address-encryption"}
diem-secure-storage = { path = "../../../secure/storage" }
diem-types = { path = "../../../types" }
diem-workspace-hack = { path = "../../../common/workspace-hack" }
diem-workspace-hack = { path = "../../../crates/diem-workspace-hack" }
diem-temppath = { path = "../../../common/temppath" }
diem-vm = { path = "../../../diem-move/diem-vm" }
diemdb = { path = "../../../storage/diemdb" }
Expand Down
2 changes: 1 addition & 1 deletion config/management/network-address-encryption/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ diem-infallible = { path = "../../../common/infallible" }
diem-logger = { path = "../../../common/logger" }
diem-secure-storage = { path = "../../../secure/storage" }
diem-types = { path = "../../../types" }
diem-workspace-hack = { path = "../../../common/workspace-hack" }
diem-workspace-hack = { path = "../../../crates/diem-workspace-hack" }

[dev-dependencies]
rand = "0.8.3"
2 changes: 1 addition & 1 deletion config/management/operational/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ diem-management = { path = ".." }
diem-network-address-encryption = {path = "../network-address-encryption"}
diem-secure-storage = { path = "../../../secure/storage" }
diem-types = { path = "../../../types" }
diem-workspace-hack = { path = "../../../common/workspace-hack" }
diem-workspace-hack = { path = "../../../crates/diem-workspace-hack" }
diem-temppath = { path = "../../../common/temppath" }
fallible = { path = "../../../common/fallible" }
netcore = { path = "../../../network/netcore" }
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 @@ -24,7 +24,7 @@ diem-client = { path = "../../crates/diem-client", features = ["blocking"], defa
diem-logger = { path = "../../common/logger" }
diem-temppath = { path = "../../common/temppath" }
diem-types = { path = "../../types" }
diem-workspace-hack = { path = "../../common/workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }

[dev-dependencies]
diem-types = {path = "../../types", features = ["fuzzing"]}
Expand Down
2 changes: 1 addition & 1 deletion consensus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ diem-secure-storage = { path = "../secure/storage" }
diem-temppath = { path = "../common/temppath" }
diem-types = { path = "../types" }
diem-vm = { path = "../diem-move/diem-vm" }
diem-workspace-hack = { path = "../common/workspace-hack" }
diem-workspace-hack = { path = "../crates/diem-workspace-hack" }
network = { path = "../network" }
safety-rules = { path = "safety-rules" }
short-hex-str = { path = "../common/short-hex-str" }
Expand Down
2 changes: 1 addition & 1 deletion consensus/consensus-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ diem-crypto = { path = "../../crates/diem-crypto" }
diem-crypto-derive = { path = "../../crates/diem-crypto-derive" }
diem-infallible = { path = "../../common/infallible" }
diem-types = { path = "../../types" }
diem-workspace-hack = { path = "../../common/workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
short-hex-str = { path = "../../common/short-hex-str" }


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 @@ -26,7 +26,7 @@ diem-secure-storage = { path = "../../secure/storage" }
diem-temppath = { path = "../../common/temppath" }
diem-types = { path = "../../types" }
diem-vault-client = { path = "../../secure/storage/vault" }
diem-workspace-hack = { path = "../../common/workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
serde = { version = "1.0.124", default-features = false }
serde_json = "1.0.64"
thiserror = "1.0.24"
Expand Down
2 changes: 1 addition & 1 deletion crates/diem-assets-proof/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ diem-types = { path = "../../types" }
move-core-types = { path = "../../language/move-core/types" }

[dev-dependencies]
diem-workspace-hack = { path = "../../common/workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
2 changes: 1 addition & 1 deletion crates/diem-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@ winapi = "0.3.9"

[dev-dependencies]
diem-types = { path = "../../types", version = "0.0.3", features = ["fuzzing"] }
diem-workspace-hack = { path = "../../common/workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
proptest = "1.0.0"
tempfile = "3.2.0"
2 changes: 1 addition & 1 deletion crates/diem-crypto-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ proc-macro2 = "1.0.24"

[dev-dependencies]
anyhow = "1.0.38"
diem-workspace-hack = { path = "../../common/workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
2 changes: 1 addition & 1 deletion crates/diem-crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ sha3 = "0.9.1"
serde_json = "1.0.64"
trybuild = "1.0.41"

diem-workspace-hack = { path = "../../common/workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }

[features]
default = ["fiat"]
Expand Down
2 changes: 1 addition & 1 deletion crates/diem-faucet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ generate-key = { path = "../../config/generate-key" }
diem-logger = { path = "../../common/logger" }
diem-sdk = { path = "../../sdk" }

diem-workspace-hack = { path = "../../common/workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }

[dev-dependencies]
serde_json = "1.0.64"
Expand Down
2 changes: 1 addition & 1 deletion crates/diem-json-rpc-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ rand = "0.8.3"
diem-crypto = { path = "../diem-crypto" }
diem-json-rpc-types = { path = "../../json-rpc/types" }
diem-types = { path = "../../types" }
diem-workspace-hack = { path = "../../common/workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
diem-client = { path = "../diem-client" }
2 changes: 1 addition & 1 deletion crates/diem-rest-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ diem-client = { path = "../diem-client" }
diem-crypto = { path = "../diem-crypto" }
diem-json-rpc-types = { path = "../../json-rpc/types" }
diem-types = { path = "../../types" }
diem-workspace-hack = { path = "../../common/workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
move-core-types = { path = "../../language/move-core/types" }
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion crates/proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ edition = "2018"
[dependencies]
ipnet = "2.3"

diem-workspace-hack = { path = "../../common/workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
2 changes: 1 addition & 1 deletion crates/swiss-knife/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ serde = { version = "1.0.124", features = ["derive"] }
bcs = "0.1.2"
diem-types = { path = "../../types" }
diem-crypto = { path = "../../crates/diem-crypto" }
diem-workspace-hack = { path = "../../common/workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
move-core-types = { path = "../../language/move-core/types" }
diem-transaction-builder = { path = "../../sdk/transaction-builder" }
2 changes: 1 addition & 1 deletion crates/transaction-emitter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ diem-config = { path = "../../config" }
diem-crypto = { path = "../diem-crypto" }
diem-logger = { path = "../../common/logger" }
diem-sdk = { path = "../../sdk" }
diem-workspace-hack = { path = "../../common/workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
2 changes: 1 addition & 1 deletion diem-move/df-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ anyhow = "1.0.38"
bcs = "0.1.2"
structopt = "0.3.21"

diem-workspace-hack = { path = "../../common/workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
move-core-types = { path = "../../language/move-core/types" }
move-cli = { path = "../../language/tools/move-cli" }
diem-vm = { path = "../diem-vm" }
Expand Down
2 changes: 1 addition & 1 deletion diem-move/diem-events-fetcher/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ structopt = "0.3.21"
futures = "0.3.12"
tokio = { version = "1.8.1", features = ["full"] }

diem-workspace-hack = { path = "../../common/workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
diem-client = { path = "../../crates/diem-client" }
diem-types = { path = "../../types" }
bcs = "0.1.2"
2 changes: 1 addition & 1 deletion diem-move/diem-framework/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ move-lang = { path = "../../language/move-lang" }
move-prover = { path = "../../language/move-prover" }
diem-crypto = { path = "../../crates/diem-crypto" }
diem-types = { path = "../../types" }
diem-workspace-hack = { path = "../../common/workspace-hack" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
move-binary-format = { path = "../../language/move-binary-format" }
transaction-builder-generator = { path = "../transaction-builder-generator" }
move-stdlib = { path = "../../language/move-stdlib" }
Expand Down
2 changes: 1 addition & 1 deletion diem-move/diem-framework/DPN/releases/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ publish = false
move-command-line-common = { path = "../../../../language/move-command-line-common" }
diem-crypto = { path = "../../../../crates/diem-crypto" }
diem-types = { path = "../../../../types" }
diem-workspace-hack = { path = "../../../../common/workspace-hack" }
diem-workspace-hack = { path = "../../../../crates/diem-workspace-hack" }
move-binary-format = { path = "../../../../language/move-binary-format" }
framework-releases = { path = "../../releases" }

Expand Down
Loading

0 comments on commit 0655876

Please sign in to comment.