ci: remove OpenSSL as dependency in favor of rustls (#2242)

`object_store` already hard codes `rustls` as the TLS implementation, so
we have been shipping a mix of `rustls` and `openssl`. For simplicity of
builds, we should consolidate to one, and that has to be `rustls`.
This commit is contained in:
Will Jones
2025-03-20 08:06:45 -07:00
committed by GitHub
parent b9afd9c860
commit 440a466a13
6 changed files with 187 additions and 245 deletions

View File

@@ -33,10 +33,6 @@ pyo3-build-config = { version = "0.23", features = [
] }
[features]
default = ["default-tls", "remote"]
default = ["remote"]
fp16kernels = ["lancedb/fp16kernels"]
remote = ["lancedb/remote"]
# TLS
default-tls = ["lancedb/default-tls"]
native-tls = ["lancedb/native-tls"]
rustls-tls = ["lancedb/rustls-tls"]