From 15092407ea630e735d4adc75fca169f63febf6bf Mon Sep 17 00:00:00 2001 From: link2xt Date: Thu, 5 Jun 2025 18:39:47 +0000 Subject: [PATCH] build: enable async-native-tls/vendored feature OpenSSL is vendored, but because of rusqlite feature transitively enabling vendoring feature. This change makes vendoring explicit even if we disable SQLCipher in the future. --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 991b459bc..e18ce4d32 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -204,7 +204,8 @@ yerpc = "0.6.4" default = ["vendored"] internals = [] vendored = [ - "rusqlite/bundled-sqlcipher-vendored-openssl" + "rusqlite/bundled-sqlcipher-vendored-openssl", + "async-native-tls/vendored" ] [lints.rust]