Skip to content

Commit e823c8f

Browse files
committed
reqwest without ssl support so that it fits into manylinux
1 parent 10f716e commit e823c8f

2 files changed

Lines changed: 3 additions & 183 deletions

File tree

Cargo.lock

Lines changed: 0 additions & 182 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,7 @@ statrs = "0.13.0"
1717
rand = "0.8.0"
1818
rayon = "1.5"
1919
pyo3 = { version = "0.13", features = ["extension-module"] }
20-
reqwest = { version = "0.10", features = ["blocking", "json"] }
20+
# default-features = false because it by defaults includes default-tls which
21+
# seems to pull in libssl and libcrypto which is rejected by manylinux
22+
reqwest = { version = "0.10", default-features = false, features = ["blocking", "json"] }
2123
serde = { version = "1.0", features = ["derive"] }

0 commit comments

Comments
 (0)