aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
blob: 31cd7174bf4ffe5d911c9572d8de59fcc3cc17f9 (plain)
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
37
38
39
40
41
42
43
44
45
[package]
name = "anes"
version = "0.2.0"
authors = [
  "Robert Vojta <rvojta@me.com>",
  "Andrew Walbran <qwandor@google.com>",
]
edition = "2021"
description = "ANSI Escape Sequences provider & parser"
repository = "https://github.com/qwandor/anes-rs"
documentation = "https://docs.rs/anes/"
license = "MIT OR Apache-2.0"
categories = ["command-line-interface", "parser-implementations"]
keywords = ["terminal", "ansi", "sequence", "code", "parser"]
exclude = ["target", "Cargo.lock"]
readme = "README.md"

[lib]
bench = false

[badges]
maintenance = { status = "actively-developed" }

[package.metadata.docs.rs]
all-features = true

[features]
default = []
parser = ["bitflags"]

[dependencies]
bitflags = { version = "2.4.1", optional = true }

[dev-dependencies]
criterion = "0.5.1"
libc = "0.2.150"

[[bench]]
name = "bench_main"
harness = false
required-features = ["parser"]

[[example]]
name = "parser"
required-features = ["parser"]