From 8dc4ca5a9815eed1319ef530c40fe5dbed93c56a Mon Sep 17 00:00:00 2001 From: Eric Elizes Date: Sat, 7 Mar 2026 14:55:11 -0500 Subject: [PATCH] fix: enable libsql remote + tls features for Turso cloud sync (#587) The onboard wizard offers Turso cloud sync, but the libsql dependency is compiled without the `remote` and `tls` features, causing a panic at runtime when LIBSQL_URL is set: "The `tls` feature is disabled, you must provide your own http connector" This adds the missing features to the libsql dependency. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 237717d4..75d42f63 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -56,7 +56,7 @@ rustls = { version = "0.23", optional = true, default-features = false } rustls-native-certs = { version = "0.8", optional = true } # Database - libSQL/Turso (optional embedded database) -libsql = { version = "0.6", optional = true, default-features = false, features = ["core", "replication"] } +libsql = { version = "0.6", optional = true, default-features = false, features = ["core", "replication", "remote", "tls"] } # Error handling thiserror = "2"