]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
fmt
[rust.git] / Cargo.toml
1 [package]
2 authors = ["Miri Team"]
3 description = "An experimental interpreter for Rust MIR (core driver)."
4 license = "MIT/Apache-2.0"
5 name = "miri"
6 repository = "https://github.com/rust-lang/miri"
7 version = "0.1.0"
8 default-run = "miri"
9 edition = "2018"
10
11 [workspace]
12 members = ["cargo-miri"]
13
14 [lib]
15 test = true # we have unit tests
16 doctest = false # but no doc tests
17
18 [[bin]]
19 name = "miri"
20 test = false # we have no unit tests
21 doctest = false # and no doc tests
22
23 [[bin]]
24 name = "miri-rustc-tests"
25 test = false # we have no unit tests
26 doctest = false # and no doc tests
27 required-features = ["rustc_tests"]
28
29 [dependencies]
30 getrandom = { version = "0.1.8", features = ["std"] }
31 byteorder = "1.3"
32 env_logger = "0.7.1"
33 log = "0.4"
34 shell-escape = "0.1.4"
35 hex = "0.4.0"
36 rand = "0.7"
37
38 # A noop dependency that changes in the Rust repository, it's a bit of a hack.
39 # See the `src/tools/rustc-workspace-hack/README.md` file in `rust-lang/rust`
40 # for more information.
41 rustc-workspace-hack = "1.0.0"
42
43 [dev-dependencies]
44 compiletest_rs = { version = "0.5", features = ["tmp"] }
45 rustc_version = "0.2.3"
46 colored = "1.6"
47
48 [features]
49 rustc_tests = []