Skip to content
This repository has been archived by the owner on Apr 25, 2023. It is now read-only.

Commit

Permalink
Fix a broken dependency with sqlite feature
Browse files Browse the repository at this point in the history
  • Loading branch information
cryslith authored and Julius de Bruijn committed May 3, 2020
1 parent 74c7bf3 commit 805326d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down

0 comments on commit 805326d

Please sign in to comment.