From cbdfd8c71989e478ba50a63fda8c0687be8ea458 Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Wed, 20 Apr 2022 14:42:05 +0300 Subject: [PATCH] Update 'routerify' dependency in proxy. routerify version 3 is used in zenith_utils, use the same version in proxy to avoid having to build two versions. --- Cargo.lock | 17 ++--------------- proxy/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9775ebe6b6..1cf8562787 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1858,7 +1858,7 @@ dependencies = [ "rand", "rcgen", "reqwest", - "routerify 2.2.0", + "routerify", "rstest", "rustls", "rustls-pemfile", @@ -2079,19 +2079,6 @@ dependencies = [ "winapi", ] -[[package]] -name = "routerify" -version = "2.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c6bb49594c791cadb5ccfa5f36d41b498d40482595c199d10cd318800280bd9" -dependencies = [ - "http", - "hyper", - "lazy_static", - "percent-encoding", - "regex", -] - [[package]] name = "routerify" version = "3.0.0" @@ -3379,7 +3366,7 @@ dependencies = [ "postgres", "postgres-protocol", "rand", - "routerify 3.0.0", + "routerify", "rustls", "rustls-pemfile", "rustls-split", diff --git a/proxy/Cargo.toml b/proxy/Cargo.toml index 20b459988a..a4bd99db38 100644 --- a/proxy/Cargo.toml +++ b/proxy/Cargo.toml @@ -20,7 +20,7 @@ parking_lot = "0.11.2" pin-project-lite = "0.2.7" rand = "0.8.3" reqwest = { version = "0.11", default-features = false, features = ["blocking", "json", "rustls-tls"] } -routerify = "2" +routerify = "3" rustls = "0.20.0" rustls-pemfile = "0.2.1" scopeguard = "1.1.0"