Skip to content

Commit

Permalink
Update Rust crate regex to v1.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Sep 29, 2024
1 parent 7261566 commit 604d239
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 13 deletions.
30 changes: 21 additions & 9 deletions Cargo.lock

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

9 changes: 5 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "adblock"
version = "0.9.0"
version = "0.8.11"
authors = ["Anton Lazarev <alazarev@brave.com>", "Andrius Aucinas"]
edition = "2021"

Expand Down Expand Up @@ -39,13 +39,14 @@ rmp-serde = "0.15"
lifeguard = { version = "^ 0.6.1", optional = true }
cssparser = { version = "0.28", optional = true }
selectors = { version = "0.23", optional = true }
serde_json = "1.0"
serde_json = { version = "1.0", optional = true }
thiserror = "1.0"

[dev-dependencies]
criterion = "0.5"
csv = "1"
mock_instant = { version = "0.5" }
serde_json = "1.0"
# By default, reqwest builds openssl from source, which fails on missing/incompatible system dependencies
reqwest = { version = "0.11", features = ["rustls-tls"], default-features = false }
futures = "0.3"
Expand Down Expand Up @@ -90,6 +91,6 @@ object-pooling = ["lifeguard"] # disables `Send` and `Sync` on `Engine`.
unsync-regex-caching = [] # disables `Send` and `Sync` on `Engine`.
regex-debug-info = []
css-validation = ["cssparser", "selectors"]
content-blocking = []
content-blocking = ["serde_json"]
embedded-domain-resolver = ["addr"] # Requires setting an external domain resolver if disabled.
resource-assembler = []
resource-assembler = ["serde_json"]

0 comments on commit 604d239

Please sign in to comment.