-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (48 loc) · 1.17 KB
/
Copy pathCargo.toml
File metadata and controls
55 lines (48 loc) · 1.17 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "ui_test"
version = "0.24.0"
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.70"
[lib]
test = true # we have unit tests
doctest = false # but no doc tests
[dependencies]
rustc_version = "0.4"
owo-colors = "3.5"
lazy_static = "1.4.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
cargo_metadata = "0.18"
crossbeam-channel = "0.5.6"
bstr = "1.0.1"
rustfix = "0.8.1"
cargo-platform = "0.1.2"
comma = "1.0.0"
anyhow = "1.0.6"
indicatif = "0.17.6"
prettydiff = { version = "0.7", default_features = false }
annotate-snippets = { version = "0.11.2" }
levenshtein = "1.0.5"
spanned = "0.2.1"
supports-color = "3.0"
anstream = { version = "0.6", default-features = false, features = ["auto"]}
[dependencies.regex]
version = "1.5.5"
default-features = false
features = ["unicode-gencat"]
[dependencies.color-eyre]
version = "0.6.1"
default-features = false
features = ["capture-spantrace"]
[[test]]
name = "integration"
harness = false
[[test]]
name = "build_std"
test = false
[features]
default = ["rustc"]
rustc = []