rust/Cargo.toml
kennytm b7d382a956
Remove the [workspace] section.
Miri does not need to maintain a workspace anymore. Also, keeping miri a
workspace conflicts with rustc's own workspace.
2017-12-16 03:58:17 +08:00

35 lines
714 B
TOML

[package]
authors = ["Scott Olson <scott@solson.me>"]
description = "An experimental interpreter for Rust MIR."
license = "MIT/Apache-2.0"
name = "miri"
repository = "https://github.com/solson/miri"
version = "0.1.0"
build = "build.rs"
[[bin]]
doc = false
name = "miri"
path = "miri/bin/miri.rs"
[[bin]]
doc = false
name = "cargo-miri"
path = "miri/bin/cargo-miri.rs"
required-features = ["cargo_miri"]
[lib]
path = "miri/lib.rs"
[dependencies]
byteorder = { version = "1.1", features = ["i128"]}
cargo_metadata = { version = "0.2", optional = true }
regex = "0.2.2"
lazy_static = "1.0"
[features]
cargo_miri = ["cargo_metadata"]
[dev-dependencies]
compiletest_rs = { version = "0.3.3", features = ["tmp"] }