2017-07-21 13:39:06 +02:00
|
|
|
[package]
|
2020-05-21 11:00:06 +02:00
|
|
|
authors = ["Miri Team"]
|
|
|
|
description = "An experimental interpreter for Rust MIR (core driver)."
|
2017-07-21 13:39:06 +02:00
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
name = "miri"
|
2019-02-23 19:56:29 +09:00
|
|
|
repository = "https://github.com/rust-lang/miri"
|
2017-07-21 13:39:06 +02:00
|
|
|
version = "0.1.0"
|
2018-08-01 16:34:39 +02:00
|
|
|
default-run = "miri"
|
2018-11-05 15:45:24 +01:00
|
|
|
edition = "2018"
|
2017-07-21 13:39:06 +02:00
|
|
|
|
2018-08-14 20:57:58 +02:00
|
|
|
[lib]
|
|
|
|
test = true # we have unit tests
|
|
|
|
doctest = false # but no doc tests
|
|
|
|
|
2017-07-21 13:39:06 +02:00
|
|
|
[[bin]]
|
|
|
|
name = "miri"
|
2018-08-14 20:57:58 +02:00
|
|
|
test = false # we have no unit tests
|
|
|
|
doctest = false # and no doc tests
|
2017-07-21 13:39:06 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2020-09-18 12:17:09 +02:00
|
|
|
getrandom = { version = "0.2", features = ["std"] }
|
2019-10-27 23:01:01 +01:00
|
|
|
env_logger = "0.7.1"
|
2018-01-06 10:21:24 -05:00
|
|
|
log = "0.4"
|
2019-02-08 20:37:07 +01:00
|
|
|
shell-escape = "0.1.4"
|
2019-10-27 23:01:01 +01:00
|
|
|
hex = "0.4.0"
|
2019-09-11 18:33:48 +02:00
|
|
|
rand = "0.7"
|
2020-11-02 00:23:27 +00:00
|
|
|
smallvec = "1.4.2"
|
2019-09-11 18:33:48 +02:00
|
|
|
|
2018-12-16 19:34:00 -08:00
|
|
|
# A noop dependency that changes in the Rust repository, it's a bit of a hack.
|
|
|
|
# See the `src/tools/rustc-workspace-hack/README.md` file in `rust-lang/rust`
|
|
|
|
# for more information.
|
|
|
|
rustc-workspace-hack = "1.0.0"
|
2019-09-11 18:33:48 +02:00
|
|
|
|
2020-05-21 11:21:03 +02:00
|
|
|
# Enable some feature flags that dev-dependencies need but dependencies
|
|
|
|
# do not. This makes `./miri install` after `./miri build` faster.
|
|
|
|
[target."cfg(unix)".dependencies]
|
|
|
|
libc = "0.2"
|
|
|
|
|
2020-03-15 15:15:22 +01:00
|
|
|
[dev-dependencies]
|
2020-04-10 14:57:22 +02:00
|
|
|
compiletest_rs = { version = "0.5", features = ["tmp"] }
|
2020-05-21 11:00:06 +02:00
|
|
|
rustc_version = "0.2.3"
|
2020-09-18 12:17:09 +02:00
|
|
|
colored = "2"
|