Skip to content

Commit

Permalink
crates: move crypto crates to crates directory
Browse files Browse the repository at this point in the history
  • Loading branch information
bmwill authored and bors-libra committed Nov 17, 2021
1 parent 35bc6a6 commit 9ad0597
Show file tree
Hide file tree
Showing 116 changed files with 98 additions and 98 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -819,8 +819,8 @@ jobs:
key: ${{ needs.prepare.outputs.changes-target-branch }}
- name: run crypto unit tests
run: |
$pre_command && cd crypto/crypto && cargo test --features='u64' --no-default-features
$pre_command && cd crypto/crypto && cargo test --features='u32' --no-default-features
$pre_command && cd crates/diem-crypto && cargo test --features='u64' --no-default-features
$pre_command && cd crates/diem-crypto && cargo test --features='u32' --no-default-features
- uses: ./.github/actions/build-teardown
- name: Early terminate workflow
if: ${{ failure() }}
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ members = [
"consensus/consensus-types",
"consensus/safety-rules",
"crates/diem-assets-proof",
"crates/diem-crypto",
"crates/diem-crypto-derive",
"crates/diem-faucet",
"crates/diem-json-rpc-client",
"crates/swiss-knife",
"crates/transaction-emitter",
"crypto/crypto",
"crypto/crypto-derive",
"devtools/x",
"devtools/x-core",
"devtools/x-lint",
Expand Down
4 changes: 2 additions & 2 deletions api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ tokio = { version = "1.8.1", features = ["full"] }
warp = { version = "0.3.0", features = ["default"] }

diem-config = { path = "../config" }
diem-crypto = { path = "../crypto/crypto" }
diem-crypto = { path = "../crates/diem-crypto" }
diem-json-rpc = { path = "../json-rpc" }
diem-logger = { path = "../common/logger" }
diem-mempool = { path = "../mempool"}
Expand All @@ -42,7 +42,7 @@ reqwest = { version = "0.11.2", features = ["blocking", "json"], default_feature

mempool-notifications = { path = "../state-sync/inter-component/mempool-notifications" }
diemdb = { path = "../storage/diemdb", features = ["fuzzing"] }
diem-crypto = { path = "../crypto/crypto" }
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" }
Expand Down
2 changes: 1 addition & 1 deletion api/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ serde = { version = "1.0.124", default-features = false }
serde_json = "1.0.64"
warp = { version = "0.3.0", features = ["default"] }

diem-crypto = { path = "../../crypto/crypto" }
diem-crypto = { path = "../../crates/diem-crypto" }
diem-transaction-builder = { path = "../../sdk/transaction-builder" }
diem-types = { path = "../../types" }
diem-workspace-hack = { path = "../../common/workspace-hack" }
Expand Down
6 changes: 3 additions & 3 deletions config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ serde_yaml = "0.8.17"
thiserror = "1.0.24"

bcs = "0.1.2"
diem-crypto = { path = "../crypto/crypto" }
diem-crypto-derive = { path = "../crypto/crypto-derive" }
diem-crypto = { path = "../crates/diem-crypto" }
diem-crypto-derive = { path = "../crates/diem-crypto-derive" }
diem-global-constants = { path = "./global-constants"}
diem-logger = { path = "../common/logger" }
diem-network-address-encryption = { path = "management/network-address-encryption" }
Expand All @@ -31,7 +31,7 @@ diem-workspace-hack = { path = "../common/workspace-hack" }
short-hex-str = { path = "../common/short-hex-str" }

[dev-dependencies]
diem-crypto = { path = "../crypto/crypto", features = ["fuzzing"] }
diem-crypto = { path = "../crates/diem-crypto", features = ["fuzzing"] }

[features]
default = []
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 @@ -13,6 +13,6 @@ edition = "2018"
rand = "0.8.3"

bcs = "0.1.2"
diem-crypto = { path = "../../crypto/crypto/"}
diem-crypto = { path = "../../crates/diem-crypto/"}
diem-temppath = { path = "../../common/temppath" }
diem-workspace-hack = { path = "../../common/workspace-hack" }
2 changes: 1 addition & 1 deletion config/management/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ toml = { version = "0.5.8", default-features = false }

bcs = "0.1.2"
diem-config = { path = ".."}
diem-crypto = { path = "../../crypto/crypto" }
diem-crypto = { path = "../../crates/diem-crypto" }
diem-global-constants = { path = "../global-constants"}
diem-network-address-encryption = {path = "network-address-encryption"}
diem-secure-storage = { path = "../../secure/storage" }
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 @@ -22,7 +22,7 @@ executor = { path = "../../../execution/executor" }
generate-key = { path = "../../generate-key" }
bcs = "0.1.2"
diem-config = { path = "../.."}
diem-crypto = { path = "../../../crypto/crypto" }
diem-crypto = { path = "../../../crates/diem-crypto" }
diem-framework-releases = { path = "../../../diem-move/diem-framework/DPN/releases"}
diem-global-constants = { path = "../../global-constants" }
diem-management = { path = ".." }
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 @@ -28,7 +28,7 @@ toml = { version = "0.5.8", default-features = false }
bcs = "0.1.2"
diem-client = { path = "../../../sdk/client", features = ["blocking"], default-features = false }
diem-config = { path = "../.."}
diem-crypto = { path = "../../../crypto/crypto" }
diem-crypto = { path = "../../../crates/diem-crypto" }
diem-global-constants = { path = "../../global-constants" }
diem-infallible = { path = "../../../common/infallible" }
diem-management = { path = ".." }
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 @@ -19,7 +19,7 @@ thiserror = "1.0.24"

bcs = "0.1.2"
diem-config = { path = ".." }
diem-crypto = { path = "../../crypto/crypto" }
diem-crypto = { path = "../../crates/diem-crypto" }
diem-client = { path = "../../sdk/client", features = ["blocking"], default-features = false }
diem-logger = { path = "../../common/logger" }
diem-temppath = { path = "../../common/temppath" }
Expand Down
2 changes: 1 addition & 1 deletion consensus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ executor-types = { path = "../execution/executor-types" }
fallible = { path = "../common/fallible" }
bcs = "0.1.2"
diem-config = { path = "../config" }
diem-crypto = { path = "../crypto/crypto" }
diem-crypto = { path = "../crates/diem-crypto" }
diem-logger = { path = "../common/logger" }
diem-mempool = { path = "../mempool" }
diem-metrics = { path = "../common/metrics" }
Expand Down
4 changes: 2 additions & 2 deletions consensus/consensus-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ serde = { version = "1.0.124", default-features = false }

executor-types = { path = "../../execution/executor-types" }
bcs = "0.1.2"
diem-crypto = { path = "../../crypto/crypto" }
diem-crypto-derive = { path = "../../crypto/crypto-derive" }
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" }
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 @@ -15,7 +15,7 @@ rand_core = "0.6.2"
crash-handler = { path = "../../common/crash-handler" }
consensus-types = { path = "../consensus-types" }
diem-config = { path = "../../config" }
diem-crypto = { path = "../../crypto/crypto" }
diem-crypto = { path = "../../crates/diem-crypto" }
diem-global-constants = { path = "../../config/global-constants"}
diem-infallible = { path = "../../common/infallible" }
diem-logger = { path = "../../common/logger" }
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 @@ -17,7 +17,7 @@ structopt = "0.3.21"

bcs = "0.1.2"
diem-client = { path = "../../sdk/client", features = ["blocking"], default-features = false }
diem-crypto = { path = "../../crypto/crypto" }
diem-crypto = { path = "../../crates/diem-crypto" }
diem-types = { path = "../../types" }
move-core-types = { path = "../../language/move-core/types" }

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion crypto/crypto/Cargo.toml → crates/diem-crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ thiserror = "1.0.24"
tiny-keccak = { version = "2.0.2", features = ["sha3"] }
x25519-dalek = { version = "0.1.0", package = "x25519-dalek-fiat", default-features = false, features = ["std"] }
aes-gcm = "0.8.0"
diem-crypto-derive = { path = "../crypto-derive", version = "0.0.3" }
diem-crypto-derive = { path = "../diem-crypto-derive", version = "0.0.3" }
bcs = "0.1.2"

[dev-dependencies]
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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/diem-json-rpc-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ edition = "2018"
futures = "0.3.12"
rand = "0.8.3"

diem-crypto = { path = "../../crypto/crypto" }
diem-crypto = { path = "../../crates/diem-crypto" }
diem-json-rpc-types = { path = "../../json-rpc/types" }
diem-types = { path = "../../types" }
diem-workspace-hack = { path = "../../common/workspace-hack" }
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 @@ -18,7 +18,7 @@ serde = { version = "1.0.124", features = ["derive"] }

bcs = "0.1.2"
diem-types = { path = "../../types" }
diem-crypto = { path = "../../crypto/crypto" }
diem-crypto = { path = "../../crates/diem-crypto" }
diem-workspace-hack = { path = "../../common/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 @@ -22,7 +22,7 @@ tokio = { version = "1.8.1", features = ["full"] }

diem-client = { path = "../../sdk/client"}
diem-config = { path = "../../config" }
diem-crypto = { path = "../../crypto/crypto" }
diem-crypto = { path = "../../crates/diem-crypto" }
diem-logger = { path = "../../common/logger" }
diem-sdk = { path = "../../sdk" }
diem-workspace-hack = { path = "../../common/workspace-hack" }
2 changes: 1 addition & 1 deletion diem-move/diem-framework/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ move-command-line-common = { path = "../../language/move-command-line-common" }
errmapgen = { path = "../../language/move-prover/errmapgen" }
move-lang = { path = "../../language/move-lang" }
move-prover = { path = "../../language/move-prover" }
diem-crypto = { path = "../../crypto/crypto" }
diem-crypto = { path = "../../crates/diem-crypto" }
diem-types = { path = "../../types" }
diem-workspace-hack = { path = "../../common/workspace-hack" }
move-binary-format = { path = "../../language/move-binary-format" }
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 @@ -12,7 +12,7 @@ publish = false

[dependencies]
move-command-line-common = { path = "../../../../language/move-command-line-common" }
diem-crypto = { path = "../../../../crypto/crypto" }
diem-crypto = { path = "../../../../crates/diem-crypto" }
diem-types = { path = "../../../../types" }
diem-workspace-hack = { path = "../../../../common/workspace-hack" }
move-binary-format = { path = "../../../../language/move-binary-format" }
Expand Down
2 changes: 1 addition & 1 deletion diem-move/diem-keygen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ rand = "0.8.3"
sha3 = "0.9.1"
hex = "0.4.3"

diem-crypto = { path = "../../crypto/crypto" }
diem-crypto = { path = "../../crates/diem-crypto" }
diem-types = { path = "../../types" }
diem-workspace-hack = { path = "../../common/workspace-hack" }
2 changes: 1 addition & 1 deletion diem-move/diem-vm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ mirai-annotations = "1.10.1"
tracing = "0.1.16"

bcs = "0.1.2"
diem-crypto = { path = "../../crypto/crypto" }
diem-crypto = { path = "../../crates/diem-crypto" }
diem-logger = { path = "../../common/logger" }
diem-metrics = { path = "../../common/metrics" }
diem-state-view = { path = "../../storage/state-view" }
Expand Down
2 changes: 1 addition & 1 deletion diem-move/vm-genesis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ rand = "0.8.3"
bytecode-verifier = { path = "../../language/bytecode-verifier" }
bcs = "0.1.2"
diem-config = { path = "../../config" }
diem-crypto = { path = "../../crypto/crypto" }
diem-crypto = { path = "../../crates/diem-crypto" }
diem-state-view = { path = "../../storage/state-view" }
diem-types = { path = "../../types" }
diem-workspace-hack = { path = "../../common/workspace-hack" }
Expand Down
4 changes: 2 additions & 2 deletions diem-move/writeset-transaction-generator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ once_cell = "1.7.2"

bytecode-verifier = { path = "../../language/bytecode-verifier" }
diem-workspace-hack = { path = "../../common/workspace-hack" }
diem-crypto-derive = { path = "../../crypto/crypto-derive" }
diem-crypto = { path = "../../crypto/crypto" }
diem-crypto-derive = { path = "../../crates/diem-crypto-derive" }
diem-crypto = { path = "../../crates/diem-crypto" }
diem-types = { path = "../../types" }
diem-framework-releases = { path = "../../diem-move/diem-framework/DPN/releases" }
diem-framework = { path = "../../diem-move/diem-framework" }
Expand Down
2 changes: 1 addition & 1 deletion diem-node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ executor = { path = "../execution/executor" }
executor-types = { path = "../execution/executor-types" }
diem-api = { path = "../api" }
diem-config = { path = "../config" }
diem-crypto = { path = "../crypto/crypto" }
diem-crypto = { path = "../crates/diem-crypto" }
diem-data-client = { path = "../state-sync/diem-data-client" }
diem-framework-releases = { path = "../diem-move/diem-framework/DPN/releases" }
diem-genesis-tool = {path = "../config/management/genesis", features = ["testing"] }
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 @@ -17,7 +17,7 @@ executor = { path = "../executor" }
bcs = "0.1.2"
diemdb = { path = "../../storage/diemdb" }
diem-config = { path = "../../config" }
diem-crypto = { path = "../../crypto/crypto" }
diem-crypto = { path = "../../crates/diem-crypto" }
diem-temppath = { path = "../../common/temppath" }
diem-types = { path = "../../types" }
diem-vm = { path = "../../diem-move/diem-vm" }
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 @@ -15,7 +15,7 @@ executor = { path = "../executor" }
executor-types = { path = "../executor-types" }
bcs = "0.1.2"
diem-config = { path = "../../config" }
diem-crypto = { path = "../../crypto/crypto" }
diem-crypto = { path = "../../crates/diem-crypto" }
diem-global-constants = { path = "../../config/global-constants"}
diem-logger = { path = "../../common/logger" }
diem-infallible = { path = "../../common/infallible" }
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 @@ -24,7 +24,7 @@ executor = { path = "../executor" }
executor-types = { path = "../executor-types" }
diemdb = { path = "../../storage/diemdb" }
diem-config = { path = "../../config" }
diem-crypto = { path = "../../crypto/crypto" }
diem-crypto = { path = "../../crates/diem-crypto" }
diem-genesis-tool = {path = "../../config/management/genesis", features = ["testing"] }
diem-infallible = { path = "../../common/infallible" }
diem-jellyfish-merkle = { path = "../../storage/jellyfish-merkle" }
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 @@ -18,7 +18,7 @@ executor = { path = "../executor" }
executor-types = { path = "../executor-types" }
diemdb = { path = "../../storage/diemdb", features = ["fuzzing"] }
diem-config = { path = "../../config" }
diem-crypto = { path = "../../crypto/crypto" }
diem-crypto = { path = "../../crates/diem-crypto" }
diem-genesis-tool = {path = "../../config/management/genesis", features = ["testing"] }
diem-temppath = { path = "../../common/temppath" }
diem-types = { path = "../../types", features = ["fuzzing"] }
Expand Down
2 changes: 1 addition & 1 deletion execution/executor-types/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 }
thiserror = "1.0.24"

bcs = "0.1.2"
diem-crypto = { path = "../../crypto/crypto" }
diem-crypto = { path = "../../crates/diem-crypto" }
diem-secure-net = { path = "../../secure/net" }
diem-types = { path = "../../types" }
diem-workspace-hack = { path = "../../common/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 @@ -20,7 +20,7 @@ serde = { version = "1.0.124", features = ["derive"] }
consensus-types = { path = "../../consensus/consensus-types"}
executor-types = { path = "../executor-types" }
bcs = "0.1.2"
diem-crypto = { path = "../../crypto/crypto" }
diem-crypto = { path = "../../crates/diem-crypto" }
diem-logger = { path = "../../common/logger" }
diem-metrics = { path = "../../common/metrics" }
diem-infallible = { path = "../../common/infallible" }
Expand Down
2 changes: 1 addition & 1 deletion json-rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ bcs = "0.1.2"
diem-framework-releases= { path = "../diem-move/diem-framework/DPN/releases" }
diem-client = { path = "../sdk/client", optional = true }
diem-config = { path = "../config" }
diem-crypto = { path = "../crypto/crypto" }
diem-crypto = { path = "../crates/diem-crypto" }
diemdb = { path = "../storage/diemdb", optional = true }
diem-id-generator = { path = "../common/id-generator" }
diem-json-rpc-types = { path = "./types", package = "diem-json-rpc-types" }
Expand Down
2 changes: 1 addition & 1 deletion json-rpc/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ serde = { version = "1.0.124", default-features = false }
serde_json = "1.0.64"

bcs = "0.1.2"
diem-crypto = { path = "../../crypto/crypto", version = "0.0.3" }
diem-crypto = { path = "../../crates/diem-crypto", version = "0.0.3" }
diem-transaction-builder = { path = "../../sdk/transaction-builder", version = "0.0.3" }
diem-types = { path = "../../types", version = "0.0.3" }
move-core-types = { path = "../../language/move-core/types", version = "0.0.3" }
Expand Down
2 changes: 1 addition & 1 deletion json-rpc/types/proto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ prost = "0.8.0"
serde = { version = "1.0.124", default-features = false }
serde_json = "1.0.64"

diem-crypto = { path = "../../../crypto/crypto" }
diem-crypto = { path = "../../../crates/diem-crypto" }
diem-types = { path = "../../../types" }
diem-json-rpc-types = { path = ".." }
diem-workspace-hack = { path = "../../../common/workspace-hack" }
Expand Down
2 changes: 1 addition & 1 deletion language/e2e-testsuite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ bytecode-verifier = { path = "../bytecode-verifier" }
bcs = "0.1.2"
compiler = { path = "../compiler" }
diem-keygen = { path = "../../diem-move/diem-keygen" }
diem-crypto = { path = "../../crypto/crypto", features = ["fuzzing"] }
diem-crypto = { path = "../../crates/diem-crypto", features = ["fuzzing"] }
diem-types = { path = "../../types", features = ["fuzzing"] }
move-core-types = { path = "../move-core/types" }
move-vm-runtime = { path = "../move-vm/runtime" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ move-core-types = { path = "../../move-core/types" }
diem-vm = { path = "../../../diem-move/diem-vm" }
diem-types = { path = "../../../types", features = ["fuzzing"] }
diem-transaction-builder = { path = "../../../sdk/transaction-builder" }
diem-crypto = { path = "../../../crypto/crypto" }
diem-crypto = { path = "../../../crates/diem-crypto" }
diem-framework = { path = "../../../diem-move/diem-framework" }
diem-keygen = { path = "../../../diem-move/diem-keygen" }
diem-state-view = { path = "../../../storage/state-view" }
Expand Down
2 changes: 1 addition & 1 deletion language/testing-infra/e2e-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ goldenfile = "1.1.0"
bcs = "0.1.2"
compiler = { path = "../../compiler" }
once_cell = "1.7.2"
diem-crypto = { path = "../../../crypto/crypto", features = ["fuzzing"] }
diem-crypto = { path = "../../../crates/diem-crypto", features = ["fuzzing"] }
rand = "0.8.3"
serde = { version = "1.0.124", default-features = false }
diem-state-view = { path = "../../../storage/state-view" }
Expand Down
2 changes: 1 addition & 1 deletion language/testing-infra/functional-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ bytecode-verifier = { path = "../../bytecode-verifier" }
language-e2e-tests = { path = "../e2e-tests" }
diem-keygen = { path = "../../../diem-move/diem-keygen" }
diem-config = { path = "../../../config", features = ["fuzzing"] }
diem-crypto = { path = "../../../crypto/crypto" }
diem-crypto = { path = "../../../crates/diem-crypto" }
diem-workspace-hack = { path = "../../../common/workspace-hack" }
once_cell = "1.7.2"
regex = { version = "1.4.3", default-features = false, features = ["std", "perf"] }
Expand Down
2 changes: 1 addition & 1 deletion mempool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ bounded-executor = { path = "../common/bounded-executor" }
channel = { path = "../common/channel" }
bcs = "0.1.2"
diem-config = { path = "../config" }
diem-crypto = { path = "../crypto/crypto" }
diem-crypto = { path = "../crates/diem-crypto" }
diem-logger = { path = "../common/logger" }
diem-metrics = { path = "../common/metrics" }
diem-infallible = { path = "../common/infallible" }
Expand Down
4 changes: 2 additions & 2 deletions network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ bitvec = { path = "../common/bitvec", package = "diem-bitvec" }
channel = { path = "../common/channel" }
bcs = "0.1.2"
diem-config = { path = "../config" }
diem-crypto = { path = "../crypto/crypto" }
diem-crypto-derive = { path = "../crypto/crypto-derive" }
diem-crypto = { path = "../crates/diem-crypto" }
diem-crypto-derive = { path = "../crates/diem-crypto-derive" }
diem-id-generator = { path = "../common/id-generator" }
diem-infallible = { path = "../common/infallible" }
diem-logger = { path = "../common/logger" }
Expand Down
Loading

0 comments on commit 9ad0597

Please sign in to comment.