Skip to content

Commit

Permalink
diem-wallet: move to crates directory
Browse files Browse the repository at this point in the history
bmwill authored and bors-libra committed Dec 20, 2021
1 parent accd358 commit 508e21f
Showing 11 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -38,6 +38,7 @@ members = [
"crates/diem-retrier",
"crates/diem-temppath",
"crates/diem-time-service",
"crates/diem-wallet",
"crates/diem-workspace-hack",
"crates/fallible",
"crates/num-variants",
@@ -183,7 +184,6 @@ members = [
"storage/storage-interface",
"storage/storage-service",
"testsuite/cli",
"testsuite/cli/diem-wallet",
"testsuite/diem-fuzzer",
"testsuite/diem-fuzzer/fuzz",
"testsuite/diem-swarm",
Original file line number Diff line number Diff line change
@@ -19,10 +19,10 @@ pbkdf2 = "0.7.3"
serde = "1.0.124"
sha2 = "0.9.3"
thiserror = "1.0.24"
diem-crypto = { path = "../../../crates/diem-crypto", features = ["fuzzing"] }
diem-temppath = { path = "../../../crates/diem-temppath/" }
diem-types = { path = "../../../types" }
diem-workspace-hack = { version = "0.1", path = "../../../crates/diem-workspace-hack" }
diem-crypto = { path = "../diem-crypto", features = ["fuzzing"] }
diem-temppath = { path = "../diem-temppath" }
diem-types = { path = "../../types" }
diem-workspace-hack = { version = "0.1", path = "../diem-workspace-hack" }
mirai-annotations = "1.10.1"

[features]
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 testsuite/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -29,7 +29,7 @@ generate-key = { path = "../../config/generate-key" }
crash-handler = { path = "../../crates/crash-handler" }
diem-crypto = { path = "../../crates/diem-crypto" }
bcs = "0.1.2"
diem-wallet = { path = "diem-wallet" }
diem-wallet = { path = "../../crates/diem-wallet" }
diem-client = { path = "../../crates/diem-client" }
diem-infallible = { path = "../../crates/diem-infallible" }
diem-logger = { path = "../../crates/diem-logger" }

0 comments on commit 508e21f

Please sign in to comment.