diff --git a/Cargo.lock b/Cargo.lock index 6df6cd614..9d1d3aaaf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -221,7 +221,7 @@ dependencies = [ "peeking_take_while", "proc-macro2", "quote", - "regex 1.9.5 (registry+https://github.com/rust-lang/crates.io-index)", + "regex", "rustc-hash", "shlex", "syn 1.0.109", @@ -687,7 +687,7 @@ dependencies = [ "oorandom", "plotters", "rayon", - "regex 1.9.5 (registry+https://github.com/rust-lang/crates.io-index)", + "regex", "serde", "serde_derive", "serde_json", @@ -991,7 +991,7 @@ dependencies = [ "humantime", "is-terminal", "log", - "regex 1.9.5 (registry+https://github.com/rust-lang/crates.io-index)", + "regex", "termcolor", ] @@ -1247,7 +1247,7 @@ dependencies = [ "bstr", "fnv", "log", - "regex 1.9.5 (registry+https://github.com/rust-lang/crates.io-index)", + "regex", ] [[package]] @@ -1353,7 +1353,7 @@ dependencies = [ "lazy_static", "log", "memchr", - "regex 1.9.5 (registry+https://github.com/rust-lang/crates.io-index)", + "regex", "same-file", "thread_local", "walkdir", @@ -1586,7 +1586,7 @@ dependencies = [ "maplit", "once_cell", "rayon", - "regex 1.9.5 (registry+https://github.com/rust-lang/crates.io-index)", + "regex", "serde", "serde-wasm-bindgen", "serde_json", @@ -2038,7 +2038,7 @@ checksum = "3b25af4ef94a8528b41fb49a696e361dc6ef975c782417268072d987ac327964" dependencies = [ "once_cell", "parse-display-derive", - "regex 1.9.5 (registry+https://github.com/rust-lang/crates.io-index)", + "regex", ] [[package]] @@ -2050,7 +2050,7 @@ dependencies = [ "once_cell", "proc-macro2", "quote", - "regex 1.9.5 (registry+https://github.com/rust-lang/crates.io-index)", + "regex", "regex-syntax 0.6.29", "structmeta", "syn 1.0.109", @@ -2295,7 +2295,7 @@ dependencies = [ "once_cell", "protobuf", "protobuf-parse", - "regex 1.9.5 (registry+https://github.com/rust-lang/crates.io-index)", + "regex", "tempfile", "thiserror", ] @@ -2556,17 +2556,6 @@ dependencies = [ "regex-syntax 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "regex" -version = "1.9.5" -source = "git+https://github.com/plusvic/regex.git?rev=423493d#423493d4094e8167f50e1d812eb5a6349440c984" -dependencies = [ - "aho-corasick", - "memchr", - "regex-automata 0.3.8 (git+https://github.com/plusvic/regex.git?rev=423493d)", - "regex-syntax 0.7.5 (git+https://github.com/plusvic/regex.git?rev=423493d)", -] - [[package]] name = "regex-automata" version = "0.3.8" @@ -3083,7 +3072,7 @@ dependencies = [ "pest", "pest_derive", "phf 0.10.1", - "regex 1.9.5 (registry+https://github.com/rust-lang/crates.io-index)", + "regex", "semver 0.11.0", "sha2 0.9.9", "signal-hook 0.1.17", @@ -4026,7 +4015,6 @@ dependencies = [ "protobuf", "protobuf-codegen", "protobuf-parse", - "regex 1.9.5 (git+https://github.com/plusvic/regex.git?rev=423493d)", "regex-automata 0.3.8 (git+https://github.com/plusvic/regex.git?rev=423493d)", "regex-syntax 0.7.5 (git+https://github.com/plusvic/regex.git?rev=423493d)", "rustc-hash", diff --git a/Cargo.toml b/Cargo.toml index d6cfc0e91..79ffdb8c5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -55,7 +55,6 @@ pretty_assertions = "1.3.0" protobuf = "3.2.0" protobuf-codegen = "3.2.0" protobuf-parse = "3.2.0" -regex = { git = "https://github.com/plusvic/regex.git", rev="423493d" } regex-syntax = { git = "https://github.com/plusvic/regex.git", rev="423493d" } regex-automata = { git = "https://github.com/plusvic/regex.git", rev="423493d" } rustc-hash = "1.1.0" diff --git a/yara-x/Cargo.toml b/yara-x/Cargo.toml index 69af5cf4b..e754ddbb8 100644 --- a/yara-x/Cargo.toml +++ b/yara-x/Cargo.toml @@ -72,7 +72,6 @@ memx = { workspace = true } num = { workspace = true } protobuf = { workspace = true } rustc-hash = { workspace = true } -regex = { workspace = true } regex-syntax = { workspace = true } regex-automata = { workspace = true } smallvec = { workspace = true, features=["serde"] }