Skip to content

Commit 15ebfca

Browse files
Update Rust crate serde_json to v1.0.140
1 parent 5d024dc commit 15ebfca

File tree

4 files changed

+53
-32
lines changed

4 files changed

+53
-32
lines changed

Cargo.lock

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

Cargo.toml

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "adblock"
3-
version = "0.9.5"
3+
version = "0.9.4"
44
authors = ["Anton Lazarev <alazarev@brave.com>", "Andrius Aucinas"]
55
edition = "2021"
66

@@ -36,8 +36,9 @@ seahash = "3" # seahash 4 introduces a breaking hash algorithm change
3636
memchr = "2.4"
3737
base64 = "0.13"
3838
rmp-serde = "0.15"
39-
cssparser = { version = "0.29", optional = true }
40-
selectors = { version = "0.24", optional = true }
39+
lifeguard = { version = "^ 0.6.1", optional = true }
40+
cssparser = { version = "0.28", optional = true }
41+
selectors = { version = "0.23", optional = true }
4142
serde_json = "1.0"
4243
thiserror = "1.0"
4344

@@ -88,8 +89,9 @@ harness = false
8889
[features]
8990
# If disabling default features, consider explicitly re-enabling the
9091
# "embedded-domain-resolver" feature.
91-
default = ["embedded-domain-resolver", "full-regex-handling", "unsync-regex-caching"]
92+
default = ["embedded-domain-resolver", "full-regex-handling", "object-pooling", "unsync-regex-caching"]
9293
full-regex-handling = []
94+
object-pooling = ["lifeguard"] # disables `Send` and `Sync` on `Engine`.
9395
unsync-regex-caching = [] # disables `Send` and `Sync` on `Engine`.
9496
regex-debug-info = []
9597
css-validation = ["cssparser", "selectors"]

js/Cargo.lock

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

js/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "adblock-rs"
3-
version = "0.9.5"
3+
version = "0.9.4"
44
authors = ["Anton Lazarev <alazarev@brave.com>", "Andrius Aucinas"]
55
edition = "2018"
66
license = "MPL-2.0"

0 commit comments

Comments
 (0)