From 3dda9ca3baf2434c413dd5096560002f15be6f27 Mon Sep 17 00:00:00 2001 From: Jonathan Davies Date: Tue, 31 Jan 2023 13:25:30 +0000 Subject: [PATCH] Cargo.toml: Version bumps: * arc-swap: 1.1 -> 1.6 * async-trait: 0.1.7 -> 0.1.64 * bytes: 1.2 -> 1.3 * hex: 0.4.2 -> 0.4.3 * lru: 0.7 -> 0.10 * opentelemetry: 0.17 -> 0.18. * pin-project: 1.0.10 -> 1.0.12 --- Cargo.lock | 9 ++++----- Cargo.toml | 16 ++++++++-------- 2 files changed, 12 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bd7248c..5f0daaf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -400,10 +400,9 @@ dependencies = [ ] [[package]] -name = "lru" -version = "0.7.8" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e999beba7b6e8345721bd280141ed958096a2e4abdf74f67ff4ce49b4b54e47a" +checksum = "03f1160296536f10c833a82dca22267d5486734230d47bf00bf435885814ba1e" dependencies = [ "hashbrown", ] @@ -610,9 +609,9 @@ dependencies = [ [[package]] name = "quote" -version = "1.0.21" +version = "1.0.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179" +checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc" dependencies = [ "proc-macro2", ] diff --git a/Cargo.toml b/Cargo.toml index 1a6e5ea..a0c5544 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,30 +21,30 @@ telemetry = ["opentelemetry", "opentelemetry-contrib"] [dependencies] futures = "0.3.17" -pin-project = "1.0.10" +pin-project = "1.0.12" tokio = { version = "1.0", default-features = false, features = ["net", "rt", "rt-multi-thread", "sync", "time", "macros", "io-util", "signal"] } tokio-util = { version = "0.7", default-features = false, features = ["compat", "io"] } tokio-stream = "0.1.7" serde = { version = "1.0", default-features = false, features = ["derive", "rc"] } rmp-serde = "0.15" -hex = "0.4.2" +hex = "0.4.3" rand = { version = "0.8" } log = "0.4.8" -arc-swap = "1.1" -async-trait = "0.1.7" +arc-swap = "1.6" +async-trait = "0.1.64" err-derive = "0.3" -bytes = "1.2" -lru = { version = "0.7", optional = true } +bytes = "1.3" +lru = { version = "0.10", optional = true } cfg-if = "1.0" sodiumoxide = { version = "0.2.5-0", package = "kuska-sodiumoxide" } kuska-handshake = { version = "0.2.0", features = ["default", "async_std"] } -opentelemetry = { version = "0.17", optional = true } -opentelemetry-contrib = { version = "0.9", optional = true } +opentelemetry = { version = "0.18", optional = true } +opentelemetry-contrib = { version = "0.10", optional = true } [dev-dependencies] env_logger = "0.9"