From c4c0c8ac11bdc53e95f45d1ce91560ad442a6baf Mon Sep 17 00:00:00 2001 From: Georg Semmler Date: Fri, 2 Feb 2024 07:47:23 +0100 Subject: [PATCH] Bump libsqlite3-sys to 0.28 --- CHANGELOG.md | 1 + diesel/Cargo.toml | 2 +- diesel_cli/Cargo.toml | 2 +- diesel_tests/Cargo.toml | 2 +- examples/sqlite/all_about_inserts/Cargo.toml | 2 +- examples/sqlite/getting_started_step_1/Cargo.toml | 2 +- examples/sqlite/getting_started_step_2/Cargo.toml | 2 +- examples/sqlite/getting_started_step_3/Cargo.toml | 2 +- 8 files changed, 8 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 15a0190fa376..8bdfef85ed44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ Increasing the minimal supported Rust version will always be coupled at least wi * Added an optional `#[diesel(skip_insertion)]` field attribute to the `Insertable` derive macro, allowing fields which map to generated columns to be skipped during insertion. * Support for connection instrumentation. This allows to inspect any query run by your application * Logging in diesel-cli +* Support for libsqlite3-sys 0.28 ### Changed diff --git a/diesel/Cargo.toml b/diesel/Cargo.toml index e23bacc0efdf..94b759fd9c5f 100644 --- a/diesel/Cargo.toml +++ b/diesel/Cargo.toml @@ -16,7 +16,7 @@ rust-version.workspace = true 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.28.0", optional = true, features = ["bundled_bindings"] } +libsqlite3-sys = { version = ">=0.17.2, <0.29.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 f632665b26ef..9a9bfadd18e8 100644 --- a/diesel_cli/Cargo.toml +++ b/diesel_cli/Cargo.toml @@ -31,7 +31,7 @@ heck = "0.4.0" serde = { version = "1.0.0", features = ["derive"] } toml = "0.8" url = { version = "2.2.2" } -libsqlite3-sys = { version = ">=0.17.2, <0.28.0", optional = true } +libsqlite3-sys = { version = ">=0.17.2, <0.29.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 5fdd4a5f35dd..1d4d23297247 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.5.0" rand = "0.8.4" -libsqlite3-sys = { version = "0.27", optional = true } +libsqlite3-sys = { version = "0.28", optional = true } [features] default = [] diff --git a/examples/sqlite/all_about_inserts/Cargo.toml b/examples/sqlite/all_about_inserts/Cargo.toml index 80f6e615d21a..00ff023eb31d 100644 --- a/examples/sqlite/all_about_inserts/Cargo.toml +++ b/examples/sqlite/all_about_inserts/Cargo.toml @@ -9,7 +9,7 @@ diesel = { version = "2.1.0", path = "../../../diesel", features = ["sqlite", "c serde = { version = "1.0.130", features = ["derive"] } serde_json = "1.0.68" chrono = { version = "0.4.20", default-features = false, features = ["clock", "std"] } -libsqlite3-sys = { version = "0.27.0", features = ["bundled"] } +libsqlite3-sys = { version = "0.28.0", features = ["bundled"] } [lib] doc = false diff --git a/examples/sqlite/getting_started_step_1/Cargo.toml b/examples/sqlite/getting_started_step_1/Cargo.toml index a53a790cfa1c..a72fddd5c3b2 100644 --- a/examples/sqlite/getting_started_step_1/Cargo.toml +++ b/examples/sqlite/getting_started_step_1/Cargo.toml @@ -9,7 +9,7 @@ publish = false [dependencies] diesel = { version = "2.1.0", path = "../../../diesel", features = ["sqlite"] } dotenvy = "0.15" -libsqlite3-sys = { version = "0.27.0", features = ["bundled"] } +libsqlite3-sys = { version = "0.28.0", features = ["bundled"] } [[bin]] name = "show_posts" diff --git a/examples/sqlite/getting_started_step_2/Cargo.toml b/examples/sqlite/getting_started_step_2/Cargo.toml index ad212b010c17..9d645210109a 100644 --- a/examples/sqlite/getting_started_step_2/Cargo.toml +++ b/examples/sqlite/getting_started_step_2/Cargo.toml @@ -8,7 +8,7 @@ publish = false [dependencies] diesel = { version = "2.1.0", path = "../../../diesel", features = ["sqlite", "returning_clauses_for_sqlite_3_35"] } dotenvy = "0.15" -libsqlite3-sys = { version = "0.27.0", features = ["bundled"] } +libsqlite3-sys = { version = "0.28.0", features = ["bundled"] } [[bin]] name = "show_posts" diff --git a/examples/sqlite/getting_started_step_3/Cargo.toml b/examples/sqlite/getting_started_step_3/Cargo.toml index 1c975637442c..36a106ea72b8 100644 --- a/examples/sqlite/getting_started_step_3/Cargo.toml +++ b/examples/sqlite/getting_started_step_3/Cargo.toml @@ -8,7 +8,7 @@ publish = false [dependencies] diesel = { version = "2.1.0", path = "../../../diesel", features = ["sqlite", "returning_clauses_for_sqlite_3_35"] } dotenvy = "0.15" -libsqlite3-sys = { version = "0.27.0", features = ["bundled"] } +libsqlite3-sys = { version = "0.28.0", features = ["bundled"] } [[bin]] name = "show_posts"