Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ jobs:
platform:
[
{
toolchain: "1.53",
toolchain: "1.56",
manylinux: "2014",
target: "x86_64-unknown-linux-gnu",
arch: "x86_64",
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a Ch

## Unreleased
---
### Changes
* Update PyO3 dependency to `0.28`.

### Breaks
* Minimum Rust version is now `1.56`.

## 0.6.0 - (2022-07-17)
---
Expand Down
183 changes: 48 additions & 135 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ debug = true

[dependencies]
adblock = { version = "=0.5.6", default-features = false, features = ["full-regex-handling", "embedded-domain-resolver"] }
pyo3 = { version = "0.16", features = ["abi3-py37", "extension-module"] }
pyo3 = { version = "0.28", features = ["abi3-py37", "extension-module"] }

[lib]
name = "adblock"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Python wrapper for Brave's adblocking library, which is written in Rust.
| Build Dependency | Versions | Arch Linux | Url |
| ---------------- | -------- | ---------- | ------------------------------- |
| Python | `>=3.7` | `python` | - |
| Rust | `>=1.53` | `rust` | - |
| Rust | `>=1.56` | `rust` | - |
| Maturin | `>=0.10` | `maturin` | https://github.com/PyO3/maturin |

#### PEP 517
Expand Down
Loading