Skip to content

Commit

Permalink
chore: update dependencies.
Browse files Browse the repository at this point in the history
Now that rust-lang/regex#1086 was merged, I can stop depending on my own clone and can rely on the official implementation of `regex-syntax`.
  • Loading branch information
plusvic committed Mar 26, 2024
1 parent 6dedd58 commit f60fa64
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 36 deletions.
37 changes: 11 additions & 26 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 4 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,7 @@ homepage = "https://github.com/VirusTotal/yara-x"
repository = "https://github.com/VirusTotal/yara-x"
readme = "README.md"
license = "MIT"
keywords = [
"pattern-matching",
"cybersecurity",
"forensics",
"malware",
"yara"
]
keywords = ["pattern-matching", "cybersecurity", "forensics", "malware", "yara"]

# When updating rust-version also update MSRV in:
# .github/workflows/tests.yaml
Expand Down Expand Up @@ -86,8 +80,8 @@ protobuf-json-mapping = { git = "https://github.com/plusvic/rust-protobuf.git",
protobuf-parse = { git = "https://github.com/plusvic/rust-protobuf.git", rev = "b484d8a7" }
protobuf-support = { git = "https://github.com/plusvic/rust-protobuf.git", rev = "b484d8a7" }
rayon = "1.5.3"
regex-syntax = { git = "https://github.com/plusvic/regex.git", rev = "50a708b" }
regex-automata = { git = "https://github.com/plusvic/regex.git", rev = "50a708b" }
regex-syntax = "0.8.3"
regex-automata = "0.4.6"
roxmltree = "0.19.0"
rustc-hash = "1.1.0"
smallvec = "1.13.2"
Expand Down Expand Up @@ -115,4 +109,4 @@ zip = "0.6.2"
[profile.release-lto]
inherits = "release"
lto = true
codegen-units = 1
codegen-units = 1

0 comments on commit f60fa64

Please sign in to comment.