From 957f942872ab87cce55d48dbbfc7160b2fd089b9 Mon Sep 17 00:00:00 2001 From: link2xt Date: Sun, 2 May 2021 13:11:06 +0300 Subject: [PATCH] Cargo.toml: move "rusqlite/bundled" to "vendored" feature It is enabled from deltachat-ffi/Cargo.toml by default. Fix for abac35c872adb55ff9b1ef8ffe134ffe61d5e445 --- Cargo.toml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 19bd07f80..2673acae3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -115,9 +115,8 @@ name = "search_msgs" harness = false [features] -default = ["bundled-sqlite"] +default = [] internals = [] repl = ["internals", "rustyline", "log", "pretty_env_logger", "ansi_term", "dirs"] -vendored = ["async-native-tls/vendored", "async-smtp/native-tls-vendored"] +vendored = ["async-native-tls/vendored", "async-smtp/native-tls-vendored", "rusqlite/bundled"] nightly = ["pgp/nightly"] -bundled-sqlite = ["rusqlite/bundled"]