summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorÁrni Dagur <arni@dagur.eu>2021-04-13 00:01:44 +0000
committerGitHub <noreply@github.com>2021-04-13 00:01:44 +0000
commitbf23b21e41c169c25d088a97d06d43b5595e02b1 (patch)
tree702e6f45ce4ddcc4ed23b19175481008d671b4c4 /Cargo.toml
parentccb00e70cd098d6500f422702a8a2e96a233f835 (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.toml7
1 files changed, 2 insertions, 5 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 1a0fa77..caa62b6 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -23,11 +23,8 @@ debug = true
23 23
24[dependencies] 24[dependencies]
25adblock = { version = "=0.3.10", default-features = false, features = ["full-regex-handling", "embedded-domain-resolver"] } 25adblock = { version = "=0.3.10", default-features = false, features = ["full-regex-handling", "embedded-domain-resolver"] }
26pyo3 = "0.13" 26pyo3 = { version = "0.13", features = ["abi3-py36", "extension-module"] }
27 27
28[lib] 28[lib]
29name = "adblock" 29name = "adblock"
30crate-type = ["rlib", "cdylib"] 30crate-type = ["rlib", "cdylib"] \ No newline at end of file
31
32[features]
33default = ["pyo3/extension-module"]