From 805326da2a7a0198ebed59cf3f645aa1282a9724 Mon Sep 17 00:00:00 2001 From: Lily Chung Date: Wed, 29 Apr 2020 21:31:45 -0700 Subject: [PATCH] Fix a broken dependency with sqlite feature --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 42b526015..5620def36 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,10 +32,10 @@ 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", "tokio/sync"] +single-sqlite = ["sqlite", "json-1", "uuid-0_8", "chrono-0_4"] pooled = ["mobc", "async-trait"] -sqlite = ["rusqlite", "libsqlite3-sys"] +sqlite = ["rusqlite", "libsqlite3-sys", "tokio/sync"] json-1 = ["serde_json", "base64"] postgresql = ["rust_decimal/postgres", "native-tls", "tokio-postgres", "postgres-native-tls", "array", "bytes", "tokio", "bit-vec"] uuid-0_8 = ["uuid"]