summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 1a0fa777008f8c15ea2313f54b127dfd1cbbe3e2 (plain)
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
[package]
publish = false
name = "adblock"
version = "0.4.3"
edition = "2018"
authors = ["Árni Dagur <arni@dagur.eu>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
homepage = "https://github.com/ArniDagur/python-adblock"
repository = "https://github.com/ArniDagur/python-adblock"

[package.metadata.maturin]
classifier = [
    "Programming Language :: Python",
    "Programming Language :: Rust",
    "License :: OSI Approved :: MIT License",
    "License :: OSI Approved :: Apache Software License",
]
requires-python = ">=3.6"

[profile.release]
debug = true

[dependencies]
adblock = { version = "=0.3.10", default-features = false, features = ["full-regex-handling", "embedded-domain-resolver"] }
pyo3 = "0.13"

[lib]
name = "adblock"
crate-type = ["rlib", "cdylib"]

[features]
default = ["pyo3/extension-module"]