1[package] 2name = "annotate-snippets" 3version = "0.9.2" 4edition = "2018" 5authors = ["Zibi Braniecki <gandalf@mozilla.com>"] 6description = "Library for building code annotations" 7license = "Apache-2.0/MIT" 8repository = "https://github.com/rust-lang/annotate-snippets-rs" 9readme = "README.md" 10keywords = ["code", "analysis", "ascii", "errors", "debug"] 11 12[badges] 13travis-ci = { repository = "rust-lang/annotate-snippets-rs", branch = "master" } 14coveralls = { repository = "rust-lang/annotate-snippets-rs", branch = "master", service = "github" } 15 16maintenance = { status = "actively-developed" } 17 18[dependencies] 19unicode-width = "0.1" 20yansi-term = { version = "0.1", optional = true } 21 22[dev-dependencies] 23glob = "0.3" 24toml = "0.5" 25serde = { version = "1.0", features = ["derive"] } 26difference = "2.0" 27yansi-term = "0.1" 28criterion = "0.3" 29 30[[bench]] 31name = "simple" 32harness = false 33 34[features] 35default = [] 36color = ["yansi-term"] 37