diff --git a/CHANGELOG.md b/CHANGELOG.md index acf0b28d1d7c..42a2affd2c49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/diesel/Cargo.toml b/diesel/Cargo.toml index 1a0ee942fe3e..61389bec0810 100644 --- a/diesel/Cargo.toml +++ b/diesel/Cargo.toml @@ -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 } diff --git a/diesel_cli/Cargo.toml b/diesel_cli/Cargo.toml index 36a67226d498..550bdbe86841 100644 --- a/diesel_cli/Cargo.toml +++ b/diesel_cli/Cargo.toml @@ -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" diff --git a/diesel_tests/Cargo.toml b/diesel_tests/Cargo.toml index d23d31d85898..109c593239b4 100644 --- a/diesel_tests/Cargo.toml +++ b/diesel_tests/Cargo.toml @@ -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 = []