Skip to content

Commit 612d7ce

Browse files
authored
Eugene/clean deps (#13780)
## Description Ran `cargo machete` to (see https://github.com/bnjbvr/cargo-machete) to determine un-used dependencies and removed them. ## Test Plan preland ci
1 parent 51104fd commit 612d7ce

File tree

31 files changed

+6
-501
lines changed

31 files changed

+6
-501
lines changed

Cargo.lock

Lines changed: 4 additions & 414 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

benchmarks/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,10 @@ publish = false
1010
edition = "2021"
1111

1212
[dependencies]
13-
anyhow = "1.0.52"
1413
criterion = "0.3.4"
1514
once_cell = "1.7.2"
16-
proptest = "1.0.0"
1715
criterion-cpu-time = "0.1.0"
1816

19-
move-bytecode-verifier = { path = "../move-bytecode-verifier" }
2017
move-core-types = { path = "../move-core/types" }
2118
move-compiler = { path = "../move-compiler" }
2219
move-vm-runtime = { path = "../move-vm/runtime" }

documentation/examples/diem-framework/crates/cli/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,8 @@ edition = "2021"
1111
anyhow = "1.0.52"
1212
clap = { version = "4", features = ["derive"] }
1313

14-
bcs = "0.1.4"
15-
1614
move-stdlib = { path = "../../../../../move-stdlib" }
1715
move-core-types = { path = "../../../../../move-core/types" }
18-
move-vm-types = { path = "../../../../../move-vm/types" }
1916
move-cli = { path = "../../../../../tools/move-cli" }
2017
move-vm-test-utils = { path = "../../../../../move-vm/test-utils" }
2118

documentation/examples/diem-framework/crates/crypto/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ mirai-annotations = "1.10.1"
1919
proptest = { version = "1.0.0", optional = true }
2020
proptest-derive = { version = "0.3.0", optional = true }
2121
rand = "0.8.0"
22-
rand_core = { version = "0.6.2", default-features = false }
2322
serde = { version = "1.0.124", features = ["derive"] }
2423
serde_bytes = "0.11.5"
2524
serde-name = "0.1.1"

move-analyzer/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ dunce = "1.0.2"
1616
im = "15.1.0"
1717
lsp-server = "0.5.1"
1818
lsp-types = "0.90.1"
19-
petgraph = "0.5.1"
20-
serde = { version = "1.0", features = ["derive"] }
2119
serde_json = "1.0.64"
2220
tempfile = "3.2.0"
2321
url = "2.2.2"

move-binary-format/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ edition = "2021"
1111

1212
[dependencies]
1313
anyhow = "1.0.52"
14-
once_cell = "1.7.2"
1514
proptest = { version = "1.0.0", optional = true }
1615
proptest-derive = { version = "0.3.0", optional = true }
1716
ref-cast = "1.0.6"

move-bytecode-verifier/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ publish = false
1010
edition = "2021"
1111

1212
[dependencies]
13-
anyhow = "1.0.52"
1413
petgraph = "0.5.1"
15-
fail = "0.4.0"
1614

1715
move-borrow-graph = { path = "../move-borrow-graph" }
1816
move-binary-format = { path = "../move-binary-format" }

move-compiler/Cargo.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,9 @@ codespan-reporting = "0.11.1"
1313
hex = "0.4.3"
1414
regex = "1.5.5"
1515
clap.workspace = true
16-
difference = "2.0.0"
1716
petgraph = "0.5.1"
18-
walkdir = "2.3.1"
1917
tempfile = "3.2.0"
2018
once_cell = "1.7.2"
21-
num-bigint = "0.4.0"
22-
sha3 = "0.9.1"
2319
serde = { version = "1.0", features = ["derive"] }
2420

2521
bcs.workspace = true

move-ir-compiler/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,7 @@ move-bytecode-verifier = { path = "../move-bytecode-verifier" }
1515
move-command-line-common = { path = "../move-command-line-common" }
1616
move-ir-to-bytecode = { path = "move-ir-to-bytecode" }
1717
move-bytecode-source-map = { path = "move-bytecode-source-map" }
18-
move-ir-types = { path = "../move-ir/types" }
19-
move-core-types = { path = "../move-core/types" }
2018
move-binary-format = { path = "../move-binary-format" }
21-
move-symbol-pool = { path = "../move-symbol-pool" }
2219
clap.workspace = true
2320
serde_json = "1.0.64"
2421

move-ir-compiler/move-ir-to-bytecode/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ move-symbol-pool = { path = "../../move-symbol-pool" }
2020
move-bytecode-source-map = { path = "../move-bytecode-source-map" }
2121
log = "0.4.14"
2222
codespan-reporting = "0.11.1"
23-
thiserror = "1.0.24"
2423
ouroboros = "0.17.2"
2524

2625
[features]

0 commit comments

Comments
 (0)