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 single-sqlite
Browse files Browse the repository at this point in the history
  • Loading branch information
Julius de Bruijn committed Feb 25, 2020
1 parent b0deede commit ac264e7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quaint"
version = "0.2.0-alpha.6"
version = "0.2.0-alpha.7"
authors = [
"Julius de Bruijn <[email protected]>",
"Katharina Fey <[email protected]>",
Expand Down Expand Up @@ -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"]
Expand Down

0 comments on commit ac264e7

Please sign in to comment.