-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (35 loc) · 1008 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "shucker"
version = "0.1.1"
edition = "2021"
license = "GPL-3.0-only"
readme = "README.md"
authors = ["Tom Parker-Shemilt <palfrey@tevp.net>"]
repository = "https://github.com/palfrey/shucker"
description = "Tracking-param filtering library, designed to strip URLs down to their canonical forms"
categories = ["web-programming", "encoding"]
keywords = ["adblock", "url", "tracking"]
exclude = [
"external/adguardfilters/*",
]
include = ["src/*","build.rs", "external/adguardfilters/LICENSE", "external/adguardfilters/TrackParamFilter/*"]
[lib]
crate-type = ["cdylib", "rlib"]
[build-dependencies]
anyhow = ">=1.0.60"
quote = "1"
syn = "2"
prettyplease = "0.2"
proc-macro2 = "1"
[dependencies]
anyhow = ">=1.0.60"
url = ">=2.2.2"
regex = "1"
itertools = "0.14"
pyo3 = {version = "0.23", features=["extension-module"], optional = true}
[dev-dependencies]
pretty_assertions = "1"
[features]
python = ["dep:pyo3"]
[package.metadata.cargo-all-features]
skip_optional_dependencies = true