Support linking against system OpenSSL (#218)

This commit is contained in:
Ulyssa 2024-03-19 21:55:14 -07:00 committed by GitHub
parent b41faff9b7
commit 9c6ff58b96
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 34 additions and 1 deletions

View file

@ -14,6 +14,12 @@ categories = ["command-line-utilities"]
rust-version = "1.70"
build = "build.rs"
[features]
default = ["bundled"]
bundled = ["matrix-sdk/bundled-sqlite", "rustls-tls"]
native-tls = ["matrix-sdk/native-tls"]
rustls-tls = ["matrix-sdk/rustls-tls"]
[build-dependencies]
mandown = "0.1.3"
@ -71,7 +77,7 @@ version = "0.0.18"
[dependencies.matrix-sdk]
version = "0.7.1"
default-features = false
features = ["e2e-encryption", "rustls-tls", "bundled-sqlite", "sso-login"]
features = ["e2e-encryption", "sqlite", "sso-login"]
[dependencies.tokio]
version = "1.24.1"