Skip to content

Commit

Permalink
add version 0.1 to diem-workspace-hack dependency lines
Browse files Browse the repository at this point in the history
This allows crates to be published to crates.io, because they'll target
the workspace-hack dependency already present at
<https://crates.io/crates/diem-workspace-hack>.

Also move the workspace-hack dependency into [dependencies] rather than
[dev-dependencies] -- it works better that way, and the main reason it
was moved over (it was blocking publishing to crates.io) has been resolved.

Closes: aptos-labs#9989
  • Loading branch information
sunshowers authored and bors-libra committed Dec 9, 2021
1 parent e094847 commit b0c78c6
Show file tree
Hide file tree
Showing 176 changed files with 251 additions and 277 deletions.
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 = "../crates/diem-logger" }
diem-mempool = { path = "../mempool"}
diem-metrics = { path = "../crates/diem-metrics" }
diem-types = { path = "../types" }
diem-workspace-hack = { path = "../crates/diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", 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 = "../../crates/diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", path = "../../crates/diem-workspace-hack" }
move-binary-format = { path = "../../language/move-binary-format" }
move-core-types = { path = "../../language/move-core/types" }
move-resource-viewer = { path = "../../language/tools/move-resource-viewer" }
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 = "../crates/diem-temppath" }
diem-types = { path = "../types" }
diem-workspace-hack = { path = "../crates/diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", path = "../crates/diem-workspace-hack" }
short-hex-str = { path = "../crates/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 = "../../crates/diem-temppath" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", 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 = "../../crates/diem-time-service" }
diem-types = { path = "../../types" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", path = "../../crates/diem-workspace-hack" }
diem-temppath = { path = "../../crates/diem-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 = "../../../crates/diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", path = "../../../crates/diem-workspace-hack" }
diem-temppath = { path = "../../../crates/diem-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 = "../../../crates/diem-infallible" }
diem-logger = { path = "../../../crates/diem-logger" }
diem-secure-storage = { path = "../../../secure/storage" }
diem-types = { path = "../../../types" }
diem-workspace-hack = { path = "../../../crates/diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", 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 = "../../../crates/diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", path = "../../../crates/diem-workspace-hack" }
diem-temppath = { path = "../../../crates/diem-temppath" }
fallible = { path = "../../../crates/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 = "../../crates/diem-logger" }
diem-temppath = { path = "../../crates/diem-temppath" }
diem-types = { path = "../../types" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", 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 = "../crates/diem-temppath" }
diem-types = { path = "../types" }
diem-vm = { path = "../diem-move/diem-vm" }
diem-workspace-hack = { path = "../crates/diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", path = "../crates/diem-workspace-hack" }
network = { path = "../network" }
safety-rules = { path = "safety-rules" }
short-hex-str = { path = "../crates/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 = "../../crates/diem-infallible" }
diem-types = { path = "../../types" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", path = "../../crates/diem-workspace-hack" }
short-hex-str = { path = "../../crates/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 = "../../crates/diem-temppath" }
diem-types = { path = "../../types" }
diem-vault-client = { path = "../../secure/storage/vault" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", 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/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 = "../../crates/diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", path = "../diem-workspace-hack" }
tokio = { version = "1.8.1", features = ["sync"] }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/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 = "../../crates/diem-metrics" }
diem-infallible = { path = "../../crates/diem-infallible" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", path = "../diem-workspace-hack" }

[dev-dependencies]
diem-types = { path = "../../types" }
Expand Down
2 changes: 1 addition & 1 deletion crates/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 = "../../crates/diem-logger" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", path = "../diem-workspace-hack" }
serde = { version = "1.0.124", features = ["derive"] }
2 changes: 1 addition & 1 deletion crates/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 = "../../crates/diem-logger" }
diem-metrics = { path = "../../crates/diem-metrics" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", path = "../diem-workspace-hack" }
4 changes: 1 addition & 3 deletions crates/diem-assets-proof/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,4 @@ diem-client = { path = "../diem-client", features = ["blocking"], default-featur
diem-crypto = { path = "../diem-crypto" }
diem-types = { path = "../../types" }
move-core-types = { path = "../../language/move-core/types" }

[dev-dependencies]
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", path = "../diem-workspace-hack" }
2 changes: 1 addition & 1 deletion crates/diem-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 = "../../crates/diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", path = "../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 crates/diem-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ tokio = { version = "1.8.1", features = ["time"], default_features = false, opti
tokio-tungstenite = { version = "0.14", optional = true }
ureq = { version = "1.5.4", features = ["json", "native-tls"], default-features = false, optional = true }
ipnet = { version = "2.3", optional = true }
diem-workspace-hack = { version = "0.1", path = "../diem-workspace-hack" }

# Needed to fsync a directory on Windows apparently...
[target.'cfg(windows)'.dependencies]
winapi = "0.3.9"

[dev-dependencies]
diem-types = { path = "../../types", version = "0.0.3", features = ["fuzzing"] }
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 @@ -16,7 +16,7 @@ proc-macro = true
syn = { version = "1.0.64", features = ["derive"] }
quote = "1.0.9"
proc-macro2 = "1.0.24"
diem-workspace-hack = { version = "0.1", path = "../diem-workspace-hack" }

[dev-dependencies]
anyhow = "1.0.38"
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
3 changes: 1 addition & 2 deletions crates/diem-crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ x25519-dalek = { version = "0.1.0", package = "x25519-dalek-fiat", default-featu
aes-gcm = "0.8.0"
diem-crypto-derive = { path = "../diem-crypto-derive", version = "0.0.3" }
bcs = "0.1.2"
diem-workspace-hack = { version = "0.1", path = "../diem-workspace-hack" }

[dev-dependencies]
bitvec = "0.19.4"
Expand All @@ -46,8 +47,6 @@ sha3 = "0.9.1"
serde_json = "1.0.64"
trybuild = "1.0.41"

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

[features]
default = ["fiat"]
assert-private-keys-not-cloneable = []
Expand Down
3 changes: 1 addition & 2 deletions crates/diem-documentation-tool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ anyhow = "1.0.38"
regex = "1.4.3"
structopt = "0.3.21"
once_cell = "1.7.2"

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

[dev-dependencies]
serde = { version = "1.0.124", features = ["derive"] }
Expand Down
3 changes: 1 addition & 2 deletions crates/diem-faucet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ warp = "0.3.0"
generate-key = { path = "../../config/generate-key" }
diem-logger = { path = "../../crates/diem-logger" }
diem-sdk = { path = "../../sdk" }

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

[dev-dependencies]
serde_json = "1.0.64"
Expand Down
2 changes: 1 addition & 1 deletion crates/diem-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 = "../../crates/diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", path = "../diem-workspace-hack" }
2 changes: 1 addition & 1 deletion crates/diem-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 = "../../crates/diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", path = "../diem-workspace-hack" }
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 = "../../crates/diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", path = "../diem-workspace-hack" }
diem-client = { path = "../diem-client" }
2 changes: 1 addition & 1 deletion crates/diem-log-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 = "../diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", path = "../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 crates/diem-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 = "../diem-log-derive" }
diem-infallible = { path = "../diem-infallible" }
diem-workspace-hack = { path = "../diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", path = "../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 crates/diem-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 = "../../crates/diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", path = "../diem-workspace-hack" }
prometheus = { version = "0.12.0", default-features = false }
2 changes: 1 addition & 1 deletion crates/diem-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 = "../../crates/diem-logger" }
diem-metrics-core = { path = "../diem-metrics-core" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", path = "../diem-workspace-hack" }

[dev-dependencies]
rusty-fork = "0.3.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/diem-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 = "../../crates/diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", path = "../diem-workspace-hack" }
proptest = "1.0.0"
proptest-derive = "0.3.0"
2 changes: 1 addition & 1 deletion crates/diem-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= "../../crates/diem-infallible" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", path = "../diem-workspace-hack" }
diem-logger = { path = "../../crates/diem-logger" }
diem-metrics = { path = "../../crates/diem-metrics" }
futures = "0.3.12"
Expand Down
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 = "../../crates/diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", path = "../diem-workspace-hack" }
move-core-types = { path = "../../language/move-core/types" }
2 changes: 1 addition & 1 deletion crates/diem-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 = "../../crates/diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", path = "../diem-workspace-hack" }
tokio = { version = "1.8.1", features = ["time"] }
diem-logger = { path = "../../crates/diem-logger"}
2 changes: 1 addition & 1 deletion crates/diem-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 = "../../crates/diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", path = "../diem-workspace-hack" }
rand = "0.8.3"
2 changes: 1 addition & 1 deletion crates/diem-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 = "../../crates/diem-infallible" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", path = "../diem-workspace-hack" }

[dev-dependencies]
futures = "0.3.12"
Expand Down
2 changes: 1 addition & 1 deletion crates/diem-workspace-hack/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ The downside is that all code is compiled with the features needed for any
invocation.

See the
[rustc-workspace-hack](https://github.com/rust-lang/rust/tree/master/src/tools/rustc-workspace-hack)
[cargo-hakari documentation](https://docs.rs/cargo-hakari/latest/cargo_hakari/)
for further details.
3 changes: 1 addition & 2 deletions crates/fallible/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,4 @@ edition = "2018"

[dependencies]
thiserror = "1.0"

diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", path = "../diem-workspace-hack" }
2 changes: 1 addition & 1 deletion crates/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 = "../../crates/diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", path = "../diem-workspace-hack" }
3 changes: 1 addition & 2 deletions crates/proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,4 @@ edition = "2018"

[dependencies]
ipnet = "2.3"

diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", path = "../diem-workspace-hack" }
3 changes: 1 addition & 2 deletions crates/short-hex-str/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ mirai-annotations = "1.10.1"
serde = { version = "1.0.124", default-features = false }
static_assertions = "1.1.0"
thiserror = "1.0.24"

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

[dev-dependencies]
hex = "0.4.3"
Expand Down
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 = "../../crates/diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", path = "../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 = "../../crates/diem-logger" }
diem-sdk = { path = "../../sdk" }
diem-workspace-hack = { path = "../../crates/diem-workspace-hack" }
diem-workspace-hack = { version = "0.1", path = "../diem-workspace-hack" }
Loading

0 comments on commit b0c78c6

Please sign in to comment.