]> git.lizzy.rs Git - rust.git/blobdiff - Cargo.toml
Explain `tests::init` function
[rust.git] / Cargo.toml
index 7580d140b55f7f403e3e1cbf2f3ae64cd380d774..af73a7af31c712d0c29cf2ab4d72c1d93d9a8bae 100644 (file)
@@ -1,12 +1,12 @@
 [package]
 authors = ["Miri Team"]
 description = "An experimental interpreter for Rust MIR (core driver)."
-license = "MIT/Apache-2.0"
+license = "MIT OR Apache-2.0"
 name = "miri"
 repository = "https://github.com/rust-lang/miri"
 version = "0.1.0"
 default-run = "miri"
-edition = "2018"
+edition = "2021"
 
 [lib]
 test = true # we have unit tests
@@ -19,17 +19,17 @@ doctest = false # and no doc tests
 
 [dependencies]
 getrandom = { version = "0.2", features = ["std"] }
-env_logger = "0.7.1"
+env_logger = "0.9"
 log = "0.4"
 shell-escape = "0.1.4"
-hex = "0.4.0"
-rand = "0.7"
-smallvec = "1.4.2"
+rand = "0.8"
+smallvec = "1.7"
 
 # 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"
+measureme = "10.0.0"
 
 # Enable some feature flags that dev-dependencies need but dependencies
 # do not.  This makes `./miri install` after `./miri build` faster.
@@ -37,6 +37,23 @@ rustc-workspace-hack = "1.0.0"
 libc = "0.2"
 
 [dev-dependencies]
-compiletest_rs = { version = "0.5", features = ["tmp"] }
-rustc_version = "0.2.3"
 colored = "2"
+ui_test = { path = "ui_test" }
+# Features chosen to match those required by env_logger, to avoid rebuilds
+regex = { version = "1.5.5", default-features = false, features = ["perf", "std"] }
+lazy_static = "1.4.0"
+
+[package.metadata.rust-analyzer]
+# This crate uses #[feature(rustc_private)].
+# See https://github.com/rust-analyzer/rust-analyzer/pull/7891
+rustc_private = true
+
+[[test]]
+name = "compiletest"
+harness = false
+
+[features]
+default = ["stack-cache"]
+# Will be enabled on CI via `--all-features`.
+expensive-debug-assertions = []
+stack-cache = []