about summary refs log tree commit diff
path: root/src/tools/run-make-support/Cargo.toml
blob: 250e0f65a9f444c658bd876079b3583275c4e5b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "run_make_support"
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.236", default-features = false, features = ["std", "features", "validate"] }
# tidy-alphabetical-end

# Shared with bootstrap and compiletest
build_helper = { path = "../../build_helper" }

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