Skip to content

Commit

Permalink
Bump libsqlite3-sys to allow 0.26 as well
Browse files Browse the repository at this point in the history
  • Loading branch information
weiznich committed Mar 26, 2023
1 parent 4644782 commit c9e36de
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Increasing the minimal supported Rust version will always be coupled at least wi
* Added a `--diff-schema` flag to the `diesel migration generate` command that generates a migration based
on the difference between your database and the provided `schema.rs` file
* Add a `ON CONFLICT (...) DO UPDATE ... [WHERE ...]` conditional clause support for PostgreSQL.
* Support for `libsqlite3-sys` 0.26

## [diesel_derives 2.0.2] 2023-03-13

Expand Down
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 @@ rust-version = "1.65.0"
byteorder = { version = "1.0", optional = true }
chrono = { version = "0.4.20", optional = true, default-features = false, features = ["clock", "std"] }
libc = { version = "0.2.0", optional = true }
libsqlite3-sys = { version = ">=0.17.2, <0.26.0", optional = true, features = ["bundled_bindings"] }
libsqlite3-sys = { version = ">=0.17.2, <0.27.0", optional = true, features = ["bundled_bindings"] }
mysqlclient-sys = { version = "0.2.5", optional = true }
pq-sys = { version = "0.4.0", optional = true }
quickcheck = { version = "1.0.3", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion diesel_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ heck = "0.4.0"
serde = { version = "1.0.0", features = ["derive"] }
toml = "0.7"
url = { version = "2.2.2" }
libsqlite3-sys = { version = ">=0.17.2, <0.26.0", optional = true }
libsqlite3-sys = { version = ">=0.17.2, <0.27.0", optional = true }
diffy = "0.3.0"
regex = "1.0.6"
serde_regex = "1.1"
Expand Down
2 changes: 1 addition & 1 deletion diesel_tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ipnet = { version = "2.5.0" }
ipnetwork = ">=0.12.2, <0.21.0"
bigdecimal = ">= 0.0.13, < 0.4.0"
rand = "0.8.4"
libsqlite3-sys = { version = "0.25", optional = true }
libsqlite3-sys = { version = "0.26", optional = true }

[features]
default = []
Expand Down

0 comments on commit c9e36de

Please sign in to comment.