blob: 334176df456ebc751613a2bea31f03b04483d430 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
[package]
name = "python-adblock"
version = "0.1.0"
authors = ["Árni Dagur <arni@dagur.eu"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
pyo3 = "0.9"
adblock = "0.2"
[lib]
name="adblock"
crate-type = ["rlib", "cdylib"]
[features]
default = ["pyo3/extension-module"]
|