• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "anes"
3version = "0.2.0"
4authors = [
5  "Robert Vojta <rvojta@me.com>",
6  "Andrew Walbran <qwandor@google.com>",
7]
8edition = "2021"
9description = "ANSI Escape Sequences provider & parser"
10repository = "https://github.com/qwandor/anes-rs"
11documentation = "https://docs.rs/anes/"
12license = "MIT OR Apache-2.0"
13categories = ["command-line-interface", "parser-implementations"]
14keywords = ["terminal", "ansi", "sequence", "code", "parser"]
15exclude = ["target", "Cargo.lock"]
16readme = "README.md"
17
18[lib]
19bench = false
20
21[badges]
22maintenance = { status = "actively-developed" }
23
24[package.metadata.docs.rs]
25all-features = true
26
27[features]
28default = []
29parser = ["bitflags"]
30
31[dependencies]
32bitflags = { version = "2.4.1", optional = true }
33
34[dev-dependencies]
35criterion = "0.5.1"
36libc = "0.2.150"
37
38[[bench]]
39name = "bench_main"
40harness = false
41required-features = ["parser"]
42
43[[example]]
44name = "parser"
45required-features = ["parser"]
46