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.
This commit is contained in:
Dubiousjim 2020-06-10 17:52:59 -04:00 committed by Thom Chiovoloni
parent 1c9e381a21
commit db64b8dfb0

View File

@ -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 = []