]> git.lizzy.rs Git - rust.git/blob - src/tools/miri/cargo-miri/Cargo.toml
Rollup merge of #104335 - Nilstrieb:macrowo, r=compiler-errors
[rust.git] / src / tools / miri / cargo-miri / Cargo.toml
1 [package]
2 authors = ["Miri Team"]
3 description = "An experimental interpreter for Rust MIR (cargo wrapper)."
4 license = "MIT OR Apache-2.0"
5 name = "cargo-miri"
6 repository = "https://github.com/rust-lang/miri"
7 version = "0.1.0"
8 edition = "2021"
9
10 [[bin]]
11 name = "cargo-miri"
12 path = "src/main.rs"
13 test = false # we have no unit tests
14 doctest = false # and no doc tests
15
16 [dependencies]
17 directories = "4"
18 rustc_version = "0.4"
19 serde_json = "1.0.40"
20 cargo_metadata = "0.15.0"
21 rustc-build-sysroot = "0.3.3"
22
23 # A noop dependency that changes in the Rust repository, it's a bit of a hack.
24 # See the `src/tools/rustc-workspace-hack/README.md` file in `rust-lang/rust`
25 # for more information.
26 rustc-workspace-hack = "1.0.0"
27
28 # Enable some feature flags that dev-dependencies need but dependencies
29 # do not.  This makes `./miri install` after `./miri build` faster.
30 serde = { version = "*", features = ["derive"] }
31
32 [build-dependencies]
33 rustc_tools_util = "0.2"