29 lines
711 B
TOML
29 lines
711 B
TOML
|
[package]
|
||
|
authors = ["Miri Team"]
|
||
|
description = "An experimental interpreter for Rust MIR (cargo wrapper)."
|
||
|
license = "MIT/Apache-2.0"
|
||
|
name = "cargo-miri"
|
||
|
repository = "https://github.com/rust-lang/miri"
|
||
|
version = "0.1.0"
|
||
|
edition = "2018"
|
||
|
|
||
|
[[bin]]
|
||
|
name = "cargo-miri"
|
||
|
path = "bin.rs"
|
||
|
test = false # we have no unit tests
|
||
|
doctest = false # and no doc tests
|
||
|
|
||
|
[dependencies]
|
||
|
cargo_metadata = "0.9.0"
|
||
|
directories = "2.0"
|
||
|
rustc_version = "0.2.3"
|
||
|
serde_json = "1.0.40"
|
||
|
|
||
|
# 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"
|
||
|
|
||
|
[build-dependencies]
|
||
|
vergen = "3"
|