Skip to content

fix(deps): update rust crate once_cell to v1.21.3 - autoclosed #411

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
81 changes: 34 additions & 47 deletions Cargo.lock

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

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

Expand Down Expand Up @@ -28,29 +28,29 @@ url = "2.5"
percent-encoding = "2.1"
once_cell = "1.8"
regex = "1.5"
bitflags = { version = "2.9.0", features = ["serde"] }
bitflags = "1.3"
itertools = "0.13"
idna = "1.0.3"
serde = { version = "1.0", features = ["derive", "rc"] }
seahash = "4.1.0"
seahash = "3" # seahash 4 introduces a breaking hash algorithm change
memchr = "2.4"
base64 = "0.22"
base64 = "0.13"
rmp-serde = "0.15"
cssparser = { version = "0.29", optional = true }
selectors = { version = "0.24", optional = true }
lifeguard = { version = "^ 0.6.1", optional = true }
cssparser = { version = "0.28", optional = true }
selectors = { version = "0.23", optional = true }
serde_json = "1.0"
thiserror = "1.0"
flatbuffers = { version = "25.2.10", optional = true }

[dev-dependencies]
criterion = "=0.5.1"
csv = "=1.3.0"
mock_instant = { version = "=0.5.1" }
criterion = "0.5"
csv = "1"
mock_instant = { version = "0.5" }
# By default, reqwest builds openssl from source, which fails on missing/incompatible system dependencies
reqwest = { version = "=0.11.22", features = ["rustls-tls"], default-features = false }
futures = "=0.3.31"
tokio = { version = "=1.24.2", features = ["rt-multi-thread"] }
sha2 = "=0.9.9"
reqwest = { version = "0.11", features = ["rustls-tls"], default-features = false }
futures = "0.3"
tokio = { version = "1.24", features = ["rt-multi-thread"] }
sha2 = "0.9"

[lib]
bench = false
Expand All @@ -75,11 +75,6 @@ harness = false
name = "bench_redirect_performance"
harness = false


[[bench]]
name = "bench_memory"
harness = false

# Currently disabled, as cosmetic filter internals
# are no longer part of the crate's public API
#[[bench]]
Expand All @@ -89,12 +84,12 @@ harness = false
[features]
# If disabling default features, consider explicitly re-enabling the
# "embedded-domain-resolver" feature.
default = ["embedded-domain-resolver", "full-regex-handling", "unsync-regex-caching"]
default = ["embedded-domain-resolver", "full-regex-handling", "object-pooling", "unsync-regex-caching"]
full-regex-handling = []
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 = []
embedded-domain-resolver = ["addr"] # Requires setting an external domain resolver if disabled.
resource-assembler = []
flatbuffers-storage = [ "flatbuffers" ]
Loading