From 813ec1272e9ef330fda3563218de1d947b0e740f Mon Sep 17 00:00:00 2001 From: gwenn Date: Sat, 27 Jul 2019 09:14:55 +0200 Subject: [PATCH 1/2] Upgrade dependencies bindgen 0.51 url 2.0 --- Cargo.toml | 2 +- libsqlite3-sys/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 10d21d4..f606e32 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -62,7 +62,7 @@ lru-cache = "0.1" chrono = { version = "0.4", optional = true } serde_json = { version = "1.0", optional = true } csv = { version = "1.0", optional = true } -url = { version = "1.7", optional = true } +url = { version = "2.0", optional = true } lazy_static = { version = "1.0", optional = true } byteorder = { version = "1.2", features = ["i128"], optional = true } fallible-iterator = "0.2" diff --git a/libsqlite3-sys/Cargo.toml b/libsqlite3-sys/Cargo.toml index 7d0e294..95e0f45 100644 --- a/libsqlite3-sys/Cargo.toml +++ b/libsqlite3-sys/Cargo.toml @@ -29,7 +29,7 @@ preupdate_hook = [] session = ["preupdate_hook"] [build-dependencies] -bindgen = { version = "0.50", optional = true, default-features = false } +bindgen = { version = "0.51", optional = true, default-features = false } pkg-config = { version = "0.3", optional = true } cc = { version = "1.0", optional = true } From 3ff7b4152772dc1538806aa81f4c5954f97acaea Mon Sep 17 00:00:00 2001 From: gwenn Date: Sat, 27 Jul 2019 09:15:52 +0200 Subject: [PATCH 2/2] Update docs.rs features --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f606e32..5beb17f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -92,7 +92,7 @@ name = "deny_single_threaded_sqlite_config" name = "vtab" [package.metadata.docs.rs] -features = [ "backup", "blob", "chrono", "functions", "limits", "load_extension", "serde_json", "trace", "url", "vtab" ] +features = [ "backup", "blob", "chrono", "collation", "functions", "limits", "load_extension", "serde_json", "trace", "url", "vtab", "window" ] all-features = false no-default-features = true default-target = "x86_64-unknown-linux-gnu"