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