diff --git a/Cargo.toml b/Cargo.toml index fb2c1f7..057e13a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,3 @@ [workspace] -members = [ - "anes", - "interactive-test", - "fuzzer" -] +resolver = "2" +members = ["anes", "interactive-test", "fuzzer"] diff --git a/anes/Cargo.toml b/anes/Cargo.toml index f6fce2f..31cd717 100644 --- a/anes/Cargo.toml +++ b/anes/Cargo.toml @@ -1,12 +1,16 @@ [package] name = "anes" -version = "0.1.6" -authors = ["Robert Vojta "] -edition = "2018" +version = "0.2.0" +authors = [ + "Robert Vojta ", + "Andrew Walbran ", +] +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,11 +29,11 @@ default = [] parser = ["bitflags"] [dependencies] -bitflags = { version = "2.2.1", optional = true } +bitflags = { version = "2.4.1", optional = true } [dev-dependencies] -criterion = "0.5" -libc = "0.2.66" +criterion = "0.5.1" +libc = "0.2.150" [[bench]] name = "bench_main" diff --git a/fuzzer/Cargo.toml b/fuzzer/Cargo.toml index 007e9ce..817589a 100644 --- a/fuzzer/Cargo.toml +++ b/fuzzer/Cargo.toml @@ -11,5 +11,5 @@ exclude = ["target", "Cargo.lock"] publish = false [dependencies] -afl = "0.14" +afl = "0.14.5" anes = { path = "../anes", features = ["parser"] } diff --git a/interactive-test/Cargo.toml b/interactive-test/Cargo.toml index b98dc81..c9dfc9f 100644 --- a/interactive-test/Cargo.toml +++ b/interactive-test/Cargo.toml @@ -1,8 +1,11 @@ [package] name = "interactive-test" version = "0.0.1" -authors = ["Robert Vojta "] -edition = "2018" +authors = [ + "Robert Vojta ", + "Andrew Walbran ", +] +edition = "2021" description = "Interactive test for the anes." repository = "https://github.com/zrzka/anes-rs" documentation = "https://docs.rs/anes/" @@ -12,4 +15,4 @@ publish = false [dependencies] anes = { path = "../anes" } -crossterm = "0.27" +crossterm = "0.27.0"