-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathCargo.toml
35 lines (29 loc) · 906 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
[package]
name = "annotate-snippets"
version = "0.7.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]
ansi_term = { version = "0.12", optional = true }
[dev-dependencies]
glob = "0.3"
serde_yaml = "0.8"
serde = { version = "1.0", features = ["derive"] }
difference = "2.0"
ansi_term = "0.12"
criterion = "0.3"
[[bench]]
name = "simple"
harness = false
[features]
default = []
color = ["ansi_term"]