diff options
| author | Jieyou Xu <jieyouxu@outlook.com> | 2025-07-09 20:10:32 +0800 |
|---|---|---|
| committer | Jieyou Xu <jieyouxu@outlook.com> | 2025-07-09 20:10:32 +0800 |
| commit | fae15466aadd77e0369a893c7b962f7afbb86ff2 (patch) | |
| tree | 48a7699327e6ed9788f9272ff34649ef263deab4 | |
| parent | e70493d06c1e4fbc56380efc8d179bd845b20061 (diff) | |
| download | rust-fae15466aadd77e0369a893c7b962f7afbb86ff2.tar.gz rust-fae15466aadd77e0369a893c7b962f7afbb86ff2.zip | |
Sort and document `run-make-support` dependencies
| -rw-r--r-- | src/tools/run-make-support/Cargo.toml | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/src/tools/run-make-support/Cargo.toml b/src/tools/run-make-support/Cargo.toml index d01224eb56d..a4e7534137d 100644 --- a/src/tools/run-make-support/Cargo.toml +++ b/src/tools/run-make-support/Cargo.toml @@ -4,15 +4,24 @@ version = "0.0.0" edition = "2024" [dependencies] + +# These dependencies are either used to implement part of support library +# functionality, or re-exported to test recipe programs via the support library, +# or both. + +# tidy-alphabetical-start bstr = "1.12" +gimli = "0.32" +libc = "0.2" object = "0.37" +regex = "1.11" +serde_json = "1.0" similar = "2.7" wasmparser = { version = "0.219", default-features = false, features = ["std"] } -regex = "1.11" -gimli = "0.32" +# tidy-alphabetical-end + +# Shared with bootstrap and compiletest build_helper = { path = "../../build_helper" } -serde_json = "1.0" -libc = "0.2" [lib] crate-type = ["lib", "dylib"] |
