• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "codespan-reporting"
3version = "0.11.1"
4readme = "../README.md"
5license = "Apache-2.0"
6authors = ["Brendan Zabarauskas <bjzaba@yahoo.com.au>"]
7description = "Beautiful diagnostic reporting for text-based programming languages"
8homepage = "https://github.com/brendanzab/codespan"
9repository = "https://github.com/brendanzab/codespan"
10documentation = "https://docs.rs/codespan-reporting"
11exclude = ["assets/**"]
12edition = "2018"
13
14[dependencies]
15serde = { version = "1", optional = true, features = ["derive"] }
16termcolor = "1"
17unicode-width = "0.1"
18
19[dev-dependencies]
20anyhow = "1"
21insta = "1.6.3"
22lazy_static = "1.4"
23peg = "0.6"
24rustyline = "6"
25structopt = "0.3"
26unindent = "0.1"
27
28[features]
29serialization = ["serde", "serde/rc"]
30ascii-only = []
31