Skip to content

Commit

Permalink
Remove support for libsqlite3-sys 0.10.0
Browse files Browse the repository at this point in the history
Similar to diesel-rs#1900 libsqlite3-sys 0.10.0 is not selected by cargo because
it misses the `min_sqlite_version_3_7_16`. Similar to the situation
there we need to continue to support the old versions (Not because it's
part of a public api in this case, but because it is only possible to
link one version of a native library).
  • Loading branch information
weiznich committed Dec 11, 2018
1 parent 0040e93 commit 94f53bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion diesel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ byteorder = "1.0"
diesel_derives = "~1.3.0"
chrono = { version = "0.4", optional = true }
libc = { version = "0.2.0", optional = true }
libsqlite3-sys = { version = ">=0.8.0, <0.11.0", optional = true, features = ["min_sqlite_version_3_7_16"] }
libsqlite3-sys = { version = ">=0.8.0, <0.10.0", optional = true, features = ["min_sqlite_version_3_7_16"] }
mysqlclient-sys = { version = ">=0.1.0, <0.3.0", optional = true }
pq-sys = { version = ">=0.3.0, <0.5.0", optional = true }
quickcheck = { version = "0.4", optional = true }
Expand Down

0 comments on commit 94f53bb

Please sign in to comment.