python-adblock

Updated Brave adblock library for Python
Log | Files | Refs | README

Cargo.toml (639B)


      1 [package]
      2 publish = false
      3 name = "adblock"
      4 version = "0.7.0"
      5 edition = "2021"
      6 authors = ["Árni Dagur <arni@dagur.eu>"]
      7 license = "MIT OR Apache-2.0"
      8 readme = "README.md"
      9 homepage = "https://github.com/ArniDagur/python-adblock"
     10 repository = "https://github.com/ArniDagur/python-adblock"
     11 
     12 [profile.release]
     13 debug = true
     14 
     15 [dependencies]
     16 adblock = { version = "0.11.1", default-features = false, features = ["full-regex-handling", "embedded-domain-resolver"] }
     17 pyo3 = { version = "0.22", features = ["abi3-py38", "extension-module"] }
     18 
     19 [lib]
     20 name = "adblock"
     21 crate-type = ["rlib", "cdylib"]
     22 
     23 [[tool.maturin.python-packages]]
     24 name = "adblock"