blob: e90e35f4be2dde916b6de0ed93fb384f652ddb18 (
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
|
[package]
publish = false
name = "adblock"
version = "0.7.0"
edition = "2021"
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"
[profile.release]
debug = true
[dependencies]
adblock = { version = "0.11.1", default-features = false, features = ["full-regex-handling", "embedded-domain-resolver"] }
pyo3 = { version = "0.22", features = ["abi3-py38", "extension-module"] }
[lib]
name = "adblock"
crate-type = ["rlib", "cdylib"]
[[tool.maturin.python-packages]]
name = "adblock"
|