rslib: disable bzip2 feature
We can't link against libzip2.so.1 when building manylinux wheels, but the only dependency which required this was "zip" and we don't appear to make use of bzip2 in Anki. This fixes the following "make build" error on Linux: x maturin failed Caused by: Failed to ensure manylinux compliance Caused by: Your library is not manylinux compliant because it links the following forbidden libraries: ["libbz2.so.1"] Signed-off-by: Aleksa Sarai <cyphar@cyphar.com>
This commit is contained in:
parent
312393e825
commit
d2ada5a1ee
@ -28,7 +28,7 @@ serde = "1.0.114"
|
|||||||
serde_json = "1.0.56"
|
serde_json = "1.0.56"
|
||||||
tokio = { version = "0.2.21", features = ["fs", "rt-threaded"] }
|
tokio = { version = "0.2.21", features = ["fs", "rt-threaded"] }
|
||||||
serde_derive = "1.0.114"
|
serde_derive = "1.0.114"
|
||||||
zip = "0.5.6"
|
zip = { version = "0.5.6", default-features = false, features = ["deflate", "time"] }
|
||||||
serde_tuple = "0.5.0"
|
serde_tuple = "0.5.0"
|
||||||
coarsetime = { git = "https://github.com/ankitects/rust-coarsetime.git", branch="old-mac-compat" }
|
coarsetime = { git = "https://github.com/ankitects/rust-coarsetime.git", branch="old-mac-compat" }
|
||||||
utime = "0.3.1"
|
utime = "0.3.1"
|
||||||
|
Loading…
Reference in New Issue
Block a user