summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authordm <dm@work-pc>2022-02-16 12:06:25 +0800
committerÁrni Dagur <arni@dagur.eu>2022-02-26 22:06:53 +0100
commit86ba5b7a5f65b6579813b86a4414270f896e6424 (patch)
treeaf72d518a9be2a57f58e78d57c4ee22fd369ea90 /Cargo.toml
parentc63e6534d9d00121e773688e2ccd897c93dbdc69 (diff)
feat: include complete redirect rule feature.
1. update adblock-rust => 0.4.3 2. add `include_redirect_urls` parameter for `FilterSet.add_filter_list` and `FilterSet.add_filters` 3. add `Engine.add_resource` method. 4. add `adblock.AddResourceError` Exception 5. add `redirect_type` for `BlockerResult` 6. add some tests for these functions.
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 6ac767b..858d4f6 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -22,7 +22,7 @@ requires-python = ">=3.6"
22debug = true 22debug = true
23 23
24[dependencies] 24[dependencies]
25adblock = { version = "=0.3.13", default-features = false, features = ["full-regex-handling", "embedded-domain-resolver"] } 25adblock = { version = "=0.4.3", default-features = false, features = ["full-regex-handling", "embedded-domain-resolver"] }
26pyo3 = { version = "0.15", features = ["abi3-py36", "extension-module"] } 26pyo3 = { version = "0.15", features = ["abi3-py36", "extension-module"] }
27 27
28[lib] 28[lib]