Skip to content

Commit ba5ab06

Browse files
Update Rust crate serde to v1.0.219
1 parent b904779 commit ba5ab06

File tree

3 files changed

+42
-61
lines changed

3 files changed

+42
-61
lines changed

Cargo.lock

+31-50
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "adblock"
3-
version = "0.9.6"
3+
version = "0.9.5"
44
authors = ["Anton Lazarev <[email protected]>", "Andrius Aucinas"]
55
edition = "2021"
66

@@ -28,19 +28,19 @@ url = "2.5"
2828
percent-encoding = "2.1"
2929
once_cell = "1.8"
3030
regex = "1.5"
31-
bitflags = { version = "2.9.0", features = ["serde"] }
31+
bitflags = "1.3"
3232
itertools = "0.13"
3333
idna = "1.0.3"
3434
serde = { version = "1.0", features = ["derive", "rc"] }
35-
seahash = "4.1.0"
35+
seahash = "3" # seahash 4 introduces a breaking hash algorithm change
3636
memchr = "2.4"
37-
base64 = "0.22"
37+
base64 = "0.13"
3838
rmp-serde = "0.15"
39+
lifeguard = { version = "^ 0.6.1", optional = true }
3940
cssparser = { version = "0.29", optional = true }
4041
selectors = { version = "0.24", optional = true }
4142
serde_json = "1.0"
4243
thiserror = "1.0"
43-
flatbuffers = { version = "25.2.10", optional = true }
4444

4545
[dev-dependencies]
4646
criterion = "0.5"
@@ -89,12 +89,12 @@ harness = false
8989
[features]
9090
# If disabling default features, consider explicitly re-enabling the
9191
# "embedded-domain-resolver" feature.
92-
default = ["embedded-domain-resolver", "full-regex-handling", "unsync-regex-caching"]
92+
default = ["embedded-domain-resolver", "full-regex-handling", "object-pooling", "unsync-regex-caching"]
9393
full-regex-handling = []
94+
object-pooling = ["lifeguard"] # disables `Send` and `Sync` on `Engine`.
9495
unsync-regex-caching = [] # disables `Send` and `Sync` on `Engine`.
9596
regex-debug-info = []
9697
css-validation = ["cssparser", "selectors"]
9798
content-blocking = []
9899
embedded-domain-resolver = ["addr"] # Requires setting an external domain resolver if disabled.
99100
resource-assembler = []
100-
flatbuffers-storage = [ "flatbuffers" ]

js/Cargo.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)