From ac264e7de92d0315c46f94e56d06b33b6f5ab0be Mon Sep 17 00:00:00 2001 From: Julius de Bruijn Date: Tue, 25 Feb 2020 13:48:18 +0100 Subject: [PATCH] Fix a broken dependency with single-sqlite --- CHANGELOG.md | 4 ++++ Cargo.toml | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eb135ef7c..a1283d63b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v0.2.0-alpha.7 + +- Fix a missing dependency when compiling using only single-sqlite feature + ## v0.2.0-alpha.6 - Remove lazy_static in favor of once_cell diff --git a/Cargo.toml b/Cargo.toml index bbbe111f3..977ae8dd3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quaint" -version = "0.2.0-alpha.6" +version = "0.2.0-alpha.7" authors = [ "Julius de Bruijn ", "Katharina Fey ", @@ -32,7 +32,7 @@ full-sqlite = ["pooled", "sqlite", "json-1", "uuid-0_8", "chrono-0_4"] single = ["sqlite", "json-1", "postgresql", "uuid-0_8", "chrono-0_4", "mysql"] single-postgresql = ["postgresql", "json-1", "uuid-0_8", "chrono-0_4", "array"] single-mysql = ["mysql", "json-1", "uuid-0_8", "chrono-0_4"] -single-sqlite = ["sqlite", "json-1", "uuid-0_8", "chrono-0_4"] +single-sqlite = ["sqlite", "json-1", "uuid-0_8", "chrono-0_4", "tokio/sync"] pooled = ["mobc", "async-trait"] sqlite = ["rusqlite", "libsqlite3-sys"]