Cargo.toml 821 字节
Newer Older
1 2 3
[package]
authors = ["Miri Team"]
description = "An experimental interpreter for Rust MIR (cargo wrapper)."
A
Alex Touchet 已提交
4
license = "MIT OR Apache-2.0"
5 6 7
name = "cargo-miri"
repository = "https://github.com/rust-lang/miri"
version = "0.1.0"
R
Ralf Jung 已提交
8
edition = "2021"
9 10 11

[[bin]]
name = "cargo-miri"
R
Ralf Jung 已提交
12
path = "src/main.rs"
13 14 15 16
test = false # we have no unit tests
doctest = false # and no doc tests

[dependencies]
R
Ralf Jung 已提交
17
directories = "4"
18
rustc_version = "0.4"
19
serde_json = "1.0.40"
20
cargo_metadata = "0.15.0"
R
Ralf Jung 已提交
21
rustc-build-sysroot = "0.4.1"
22

23 24
# Enable some feature flags that dev-dependencies need but dependencies
# do not.  This makes `./miri install` after `./miri build` faster.
R
Ralf Jung 已提交
25 26
# Require a version of serde without intransparent unreproducible binary blobs.
serde = { version = "1.0.185", features = ["derive"] }
27

28
[build-dependencies]
K
klensy 已提交
29
rustc_tools_util = "0.3"