1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies. 7# 8# If you are reading this file be aware that the original Cargo.toml 9# will likely look very different (and much more reasonable). 10# See Cargo.toml.orig for the original contents. 11 12[package] 13edition = "2021" 14name = "anes" 15version = "0.2.0" 16authors = [ 17 "Robert Vojta <[email protected]>", 18 "Andrew Walbran <[email protected]>", 19] 20exclude = [ 21 "target", 22 "Cargo.lock", 23] 24description = "ANSI Escape Sequences provider & parser" 25documentation = "https://docs.rs/anes/" 26readme = "README.md" 27keywords = [ 28 "terminal", 29 "ansi", 30 "sequence", 31 "code", 32 "parser", 33] 34categories = [ 35 "command-line-interface", 36 "parser-implementations", 37] 38license = "MIT OR Apache-2.0" 39repository = "https://github.com/qwandor/anes-rs" 40 41[package.metadata.docs.rs] 42all-features = true 43 44[lib] 45bench = false 46 47[[example]] 48name = "parser" 49required-features = ["parser"] 50 51[[bench]] 52name = "bench_main" 53harness = false 54required-features = ["parser"] 55 56[dependencies.bitflags] 57version = "2.4.1" 58optional = true 59 60[dev-dependencies.criterion] 61version = "0.5.1" 62 63[dev-dependencies.libc] 64version = "0.2.150" 65 66[features] 67default = [] 68parser = ["bitflags"] 69 70[badges.maintenance] 71status = "actively-developed" 72