aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
blob: e4a23517c421907c497c4f95d6a055c681a27f67 (plain)
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
[package]
name = "annotate-snippets"
version = "0.9.2"
edition = "2018"
authors = ["Zibi Braniecki <gandalf@mozilla.com>"]
description = "Library for building code annotations"
license = "Apache-2.0/MIT"
repository = "https://github.com/rust-lang/annotate-snippets-rs"
readme = "README.md"
keywords = ["code", "analysis", "ascii", "errors", "debug"]

[badges]
travis-ci = { repository = "rust-lang/annotate-snippets-rs", branch = "master" }
coveralls = { repository = "rust-lang/annotate-snippets-rs", branch = "master", service = "github" }

maintenance = { status = "actively-developed" }

[dependencies]
unicode-width = "0.1"
yansi-term = { version = "0.1", optional = true }

[dev-dependencies]
glob = "0.3"
toml = "0.5"
serde = { version = "1.0", features = ["derive"] }
difference = "2.0"
yansi-term = "0.1"
criterion = "0.3"

[[bench]]
name = "simple"
harness = false

[features]
default = []
color = ["yansi-term"]