-
-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 675 Bytes
/
Cargo.toml
File metadata and controls
27 lines (24 loc) · 675 Bytes
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
[package]
name = "ariadne"
version = "0.6.0"
description = "A fancy diagnostics & reporting crate"
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>"]
license = "MIT"
repository = "https://github.com/zesterer/ariadne"
readme = "README.md"
edition = "2018"
keywords = ["error", "diagnostics", "report", "pretty", "compiler"]
categories = ["command-line-utilities", "compilers", "filesystem", "visualization"]
exclude = [
"/misc",
"/misc/*",
]
[features]
auto-color = ["concolor", "concolor/auto"]
[dependencies]
yansi = "1.0"
unicode-width = "0.2.0"
concolor = { version = "0.1", optional = true }
strip-ansi-escapes = "0.2.1"
[dev-dependencies]
insta = "1.31.0"