aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig22
1 files changed, 15 insertions, 7 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index 51fd1d3..31cd717 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -1,12 +1,16 @@
[package]
name = "anes"
-version = "0.1.6"
-authors = ["Robert Vojta <rvojta@me.com>"]
-edition = "2018"
+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/zrzka/anes-rs"
+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"
@@ -25,13 +29,17 @@ default = []
parser = ["bitflags"]
[dependencies]
-bitflags = { version = "1.2", optional = true }
+bitflags = { version = "2.4.1", optional = true }
[dev-dependencies]
-criterion = "0.3"
-libc = "0.2.66"
+criterion = "0.5.1"
+libc = "0.2.150"
[[bench]]
name = "bench_main"
harness = false
required-features = ["parser"]
+
+[[example]]
+name = "parser"
+required-features = ["parser"]