diff options
| author | Árni Dagur <arni@dagur.eu> | 2021-04-13 00:01:44 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-13 00:01:44 +0000 |
| commit | bf23b21e41c169c25d088a97d06d43b5595e02b1 (patch) | |
| tree | 702e6f45ce4ddcc4ed23b19175481008d671b4c4 /Cargo.toml | |
| parent | ccb00e70cd098d6500f422702a8a2e96a233f835 (diff) | |
Improve GitHub actions workflow (#41)
* MacOS wheels should now support both x86_64 and ARM64.
* We now build ARM wheels for Linux.
* `abi3` is used to support multiple Python versions in a single wheel.
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 7 |
1 files changed, 2 insertions, 5 deletions
| @@ -23,11 +23,8 @@ debug = true | |||
| 23 | 23 | ||
| 24 | [dependencies] | 24 | [dependencies] |
| 25 | adblock = { version = "=0.3.10", default-features = false, features = ["full-regex-handling", "embedded-domain-resolver"] } | 25 | adblock = { version = "=0.3.10", default-features = false, features = ["full-regex-handling", "embedded-domain-resolver"] } |
| 26 | pyo3 = "0.13" | 26 | pyo3 = { version = "0.13", features = ["abi3-py36", "extension-module"] } |
| 27 | 27 | ||
| 28 | [lib] | 28 | [lib] |
| 29 | name = "adblock" | 29 | name = "adblock" |
| 30 | crate-type = ["rlib", "cdylib"] | 30 | crate-type = ["rlib", "cdylib"] \ No newline at end of file |
| 31 | |||
| 32 | [features] | ||
| 33 | default = ["pyo3/extension-module"] | ||
