From 68b701808a1694e53d3aae8a2390eaa7a8ba9403 Mon Sep 17 00:00:00 2001 From: Andrew Gallant Date: Mon, 9 Oct 2023 16:54:45 -0400 Subject: [PATCH] deps: bump regex-syntax to 0.8.0 --- Cargo.toml | 2 +- regex-automata/Cargo.toml | 2 +- regex-cli/Cargo.toml | 2 +- regex-lite/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6f94dc4ae..17120a0a4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -181,7 +181,7 @@ features = ["alloc", "syntax", "meta", "nfa-pikevm"] # For parsing regular expressions. [dependencies.regex-syntax] path = "regex-syntax" -version = "0.7.5" +version = "0.8.0" default-features = false [dev-dependencies] diff --git a/regex-automata/Cargo.toml b/regex-automata/Cargo.toml index 2d08cec75..719f68c66 100644 --- a/regex-automata/Cargo.toml +++ b/regex-automata/Cargo.toml @@ -86,7 +86,7 @@ internal-instrument-pikevm = ["logging", "std"] aho-corasick = { version = "1.0.0", optional = true, default-features = false } log = { version = "0.4.14", optional = true } memchr = { version = "2.6.0", optional = true, default-features = false } -regex-syntax = { path = "../regex-syntax", version = "0.7.4", optional = true, default-features = false } +regex-syntax = { path = "../regex-syntax", version = "0.8.0", optional = true, default-features = false } [dev-dependencies] anyhow = "1.0.69" diff --git a/regex-cli/Cargo.toml b/regex-cli/Cargo.toml index b5de2b5e7..571191721 100644 --- a/regex-cli/Cargo.toml +++ b/regex-cli/Cargo.toml @@ -31,6 +31,6 @@ memmap2 = "0.5.10" regex = { version = "1.9.0", path = ".." } regex-automata = { version = "0.3.0", path = "../regex-automata", features = ["logging"] } regex-lite = { version = "0.1.0", path = "../regex-lite" } -regex-syntax = { version = "0.7.3", path = "../regex-syntax" } +regex-syntax = { version = "0.8.0", path = "../regex-syntax" } tabwriter = { version = "1.2.1", features = ["ansi_formatting"] } textwrap = { version = "0.16.0", default-features = false } diff --git a/regex-lite/Cargo.toml b/regex-lite/Cargo.toml index 225193c38..b378018c2 100644 --- a/regex-lite/Cargo.toml +++ b/regex-lite/Cargo.toml @@ -14,7 +14,7 @@ rust-version = "1.65" autotests = false # Features are documented in the "Crate features" section of the crate docs: -# https://docs.rs/regex-syntax/*/#crate-features +# https://docs.rs/regex-lite/*/#crate-features # # (Currently there are no supported features. 'std' is technically one, but it # is currently required.)