]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
add cargo-miri subcommand to directly interpret the main binary of a crate
[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/solson/miri"
7 version = "0.1.0"
8
9 [[bin]]
10 doc = false
11 name = "miri"
12 test = false
13
14 [[bin]]
15 doc = false
16 name = "cargo-miri"
17 test = false
18
19 [lib]
20 test = false
21
22 [dependencies]
23 #byteorder = "0.4.2"
24 byteorder = { git = "https://github.com/quininer/byteorder.git", branch = "i128", features = ["i128"]}
25 env_logger = "0.3.3"
26 log = "0.3.6"
27 log_settings = "0.1.1"
28 cargo_metadata = "0.1"
29
30 [dev-dependencies]
31 compiletest_rs = "0.2.5"