From 154e4869ee1f661fae3d30d55dd84a47d1772e28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Fri, 4 Dec 2020 19:11:13 +0100 Subject: [PATCH 1/2] Use a weaker dependency on smallvec. There's no reason to use 1.4, 1.0.0 works just as well. 1.4 causes a big perf regression in Firefox, see https://github.com/servo/rust-smallvec/issues/243, so while we figure that out we'd like to keep using 1.3.0. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d6d15bb..0c25a3f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -109,7 +109,7 @@ fallible-iterator = "0.2" fallible-streaming-iterator = "0.1" memchr = "2.3" uuid = { version = "0.8", optional = true } -smallvec = "1.4" +smallvec = "1.0" [dev-dependencies] doc-comment = "0.3" From cef6dbbb26211baebedbebe6e114f5bcf9be2431 Mon Sep 17 00:00:00 2001 From: Thom Chiovoloni Date: Fri, 4 Dec 2020 18:55:08 -0800 Subject: [PATCH 2/2] Prep release v0.24.2 This will be the same as v0.24.1 with cf598aa0a3e06fce406ff577df46d04843efaaeb cherry-picked in. --- Cargo.toml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0c25a3f..857bb86 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rusqlite" -version = "0.24.1" +version = "0.24.2" authors = ["The rusqlite developers"] edition = "2018" description = "Ergonomic wrapper for SQLite" diff --git a/README.md b/README.md index 3eb61b7..09f0c20 100644 --- a/README.md +++ b/README.md @@ -123,7 +123,7 @@ You can adjust this behavior in a number of ways: 0.20.0). This is probably the simplest solution to any build problems. You can enable this by adding the following in your `Cargo.toml` file: ```toml [dependencies.rusqlite] - version = "0.24.1" + version = "0.24.2" features = ["bundled"] ``` * You can set the `SQLITE3_LIB_DIR` to point to directory containing the SQLite