Cargo.toml: set arm-always for cloudflare-zlib (#277)
Without this, cloudflare-zlib currently fails on all aarch64 CPUs. This is one of the two solutions I proposed in #276, and it's the option I prefer out of the two. Fixes #276.
This commit is contained in:
parent
8cff959878
commit
1d05a8a224
1 changed files with 3 additions and 2 deletions
|
|
@ -58,8 +58,9 @@ default-features = false
|
||||||
features = ["png"]
|
features = ["png"]
|
||||||
version = "0.23"
|
version = "0.23"
|
||||||
|
|
||||||
[target.'cfg(any(target_arch = "x86_64", target_arch = "aarch64"))'.dependencies]
|
[target.'cfg(any(target_arch = "x86_64", target_arch = "aarch64"))'.dependencies.cloudflare-zlib]
|
||||||
cloudflare-zlib = "^0.2.2"
|
features = ["arm-always"]
|
||||||
|
version = "^0.2.2"
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
rustc_version = "0.2"
|
rustc_version = "0.2"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue