forked from oli-obk/ui_test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (38 loc) · 955 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "ui_test"
version = "0.11.7"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "A test framework for testing rustc diagnostics output"
repository = "https://github.com/oli-obk/ui_test"
rust-version = "1.63"
[lib]
test = true # we have unit tests
doctest = false # but no doc tests
[dependencies]
rustc_version = "0.4"
colored = "2"
diff = "0.1.13"
lazy_static = "1.4.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
cargo_metadata = "0.15"
crossbeam-channel = "0.5.6"
tempfile = "3.3.0"
bstr = "1.0.1"
rustfix = "0.6.1"
cargo-platform = "0.1.2"
comma = "1.0.0"
distance = "0.4.0"
[dependencies.regex]
version = "1.5.5"
default-features = false
# Features chosen to match those required by env_logger, to avoid rebuilds
features = ["perf", "std"]
[dependencies.color-eyre]
version = "0.6.1"
default-features = false
features = ["capture-spantrace"]
[[test]]
name = "integration"
harness = false