rust/Cargo.toml

40 lines
890 B
TOML
Raw Normal View History

cargo-features = ["default-run"]
[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"
default-run = "miri"
2018-08-14 13:57:58 -05:00
[lib]
test = true # we have unit tests
doctest = false # but no doc tests
[[bin]]
name = "miri"
2018-08-14 13:57:58 -05:00
test = false # we have no unit tests
doctest = false # and no doc tests
[[bin]]
name = "cargo-miri"
2018-08-14 13:57:58 -05:00
test = false # we have no unit tests
doctest = false # and no doc tests
required-features = ["cargo_miri"]
[dependencies]
byteorder = { version = "1.1", features = ["i128"]}
2018-07-12 03:17:50 -05:00
cargo_metadata = { version = "0.6", optional = true }
env_logger = "0.5"
2018-01-06 09:21:24 -06:00
log = "0.4"
[features]
cargo_miri = ["cargo_metadata"]
[dev-dependencies]
2018-07-26 07:37:43 -05:00
compiletest_rs = { version = "0.3.12", features = ["tmp"] }
2018-07-12 04:26:09 -05:00
colored = "1.6"