diff --git a/Cargo.toml b/Cargo.toml index 37696cf46..cd0054995 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -183,7 +183,7 @@ features = ["alloc", "syntax", "meta", "nfa-pikevm"] # For parsing regular expressions. [dependencies.regex-syntax] path = "regex-syntax" -version = "0.8.2" +version = "0.8.5" default-features = false [dev-dependencies] diff --git a/regex-automata/Cargo.toml b/regex-automata/Cargo.toml index 97bfacfec..075a9aff3 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.8.2", optional = true, default-features = false } +regex-syntax = { path = "../regex-syntax", version = "0.8.5", optional = true, default-features = false } [dev-dependencies] anyhow = "1.0.69" diff --git a/regex-cli/Cargo.toml b/regex-cli/Cargo.toml index 543732285..e756887d9 100644 --- a/regex-cli/Cargo.toml +++ b/regex-cli/Cargo.toml @@ -31,6 +31,6 @@ memmap2 = "0.9.4" regex = { version = "1.9.0", path = ".." } regex-automata = { version = "0.4.0", path = "../regex-automata", features = ["logging"] } regex-lite = { version = "0.1.0", path = "../regex-lite" } -regex-syntax = { version = "0.8.0", path = "../regex-syntax" } +regex-syntax = { version = "0.8.5", path = "../regex-syntax" } tabwriter = { version = "1.2.1", features = ["ansi_formatting"] } textwrap = { version = "0.16.0", default-features = false }