From db64b8dfb0387ed8797bc0e76885e1ae6fef33e8 Mon Sep 17 00:00:00 2001 From: Dubiousjim Date: Wed, 10 Jun 2020 17:52:59 -0400 Subject: [PATCH] sys/Cargo.toml: preupdate_hook, session require buildtime_bindgen We add an explicit "buildtime_bindgen" to the "session" feature, rather than just relying on the transitive "session" -> "preupdate_hook" -> "buildtime_bindgen", to proof against possible future changes. --- libsqlite3-sys/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libsqlite3-sys/Cargo.toml b/libsqlite3-sys/Cargo.toml index 36a1412..a98c1ad 100644 --- a/libsqlite3-sys/Cargo.toml +++ b/libsqlite3-sys/Cargo.toml @@ -27,9 +27,9 @@ bundled_bindings = [] # sqlite3_unlock_notify >= 3.6.12 unlock_notify = [] # 3.13.0 -preupdate_hook = [] +preupdate_hook = ["buildtime_bindgen"] # 3.13.0 -session = ["preupdate_hook"] +session = ["preupdate_hook", "buildtime_bindgen"] in_gecko = [] with-asan = []