-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (30 loc) · 923 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
[package]
name = "annotate-snippets"
version = "0.9.0"
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"]