-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathCargo.toml
46 lines (41 loc) · 1.01 KB
/
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
44
45
46
[package]
name = "ui_test"
version = "0.22.1"
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"
lazy_static = "1.4.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
cargo_metadata = "0.18"
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"
anyhow = "1.0.6"
indicatif = "0.17.6"
prettydiff = { version = "0.6.4", default_features = false }
annotate-snippets = { version = "0.10.0" }
levenshtein = "1.0.5"
spanned = "0.1.5"
[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