Skip to content

Commit fae1546

Browse files
committed
Sort and document run-make-support dependencies
1 parent e70493d commit fae1546

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

src/tools/run-make-support/Cargo.toml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,24 @@ version = "0.0.0"
44
edition = "2024"
55

66
[dependencies]
7+
8+
# These dependencies are either used to implement part of support library
9+
# functionality, or re-exported to test recipe programs via the support library,
10+
# or both.
11+
12+
# tidy-alphabetical-start
713
bstr = "1.12"
14+
gimli = "0.32"
15+
libc = "0.2"
816
object = "0.37"
17+
regex = "1.11"
18+
serde_json = "1.0"
919
similar = "2.7"
1020
wasmparser = { version = "0.219", default-features = false, features = ["std"] }
11-
regex = "1.11"
12-
gimli = "0.32"
21+
# tidy-alphabetical-end
22+
23+
# Shared with bootstrap and compiletest
1324
build_helper = { path = "../../build_helper" }
14-
serde_json = "1.0"
15-
libc = "0.2"
1625

1726
[lib]
1827
crate-type = ["lib", "dylib"]

0 commit comments

Comments
 (0)