]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
Bump byteorder and remove no-op feature
[rust.git] / Cargo.toml
1 [package]
2 authors = ["Scott Olson <scott@solson.me>"]
3 description = "An experimental interpreter for Rust MIR."
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 [lib]
12 test = true # we have unit tests
13 doctest = false # but no doc tests
14
15 [[bin]]
16 name = "miri"
17 test = false # we have no unit tests
18 doctest = false # and no doc tests
19
20 [[bin]]
21 name = "cargo-miri"
22 test = false # we have no unit tests
23 doctest = false # and no doc tests
24 required-features = ["cargo_miri"]
25
26 [[bin]]
27 name = "miri-rustc-tests"
28 test = false # we have no unit tests
29 doctest = false # and no doc tests
30 required-features = ["rustc_tests"]
31
32 [dependencies]
33 cargo_metadata = { version = "0.8", optional = true }
34 directories = { version = "2.0", optional = true }
35 rustc_version = { version = "0.2.3", optional = true }
36 getrandom = { version = "0.1.8", features = ["std"] }
37 byteorder = "1.3"
38 env_logger = "0.6"
39 log = "0.4"
40 shell-escape = "0.1.4"
41 hex = "0.3.2"
42 rand = "0.6"
43 # A noop dependency that changes in the Rust repository, it's a bit of a hack.
44 # See the `src/tools/rustc-workspace-hack/README.md` file in `rust-lang/rust`
45 # for more information.
46 rustc-workspace-hack = "1.0.0"
47 # Depend on num-traits with default features to avoid having to rebuild
48 # between "cargo build" and "cargo intall".
49 num-traits = "*"
50
51 [build-dependencies]
52 vergen = "3"
53
54 [features]
55 default = ["cargo_miri"]
56 cargo_miri = ["cargo_metadata", "directories", "rustc_version"]
57 rustc_tests = []
58
59 [dev-dependencies]
60 compiletest_rs = { version = "0.3.22", features = ["tmp", "stable"] }
61 colored = "1.6"