From 7a33427662ff7f536c51614b4e7bb7dbc3047ed7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 24 Mar 2024 20:33:45 +0000 Subject: [PATCH] Bump the all group with 3 updates Bumps the all group with 3 updates: [concread](https://github.com/kanidm/concread), [toml](https://github.com/toml-rs/toml) and [uuid](https://github.com/uuid-rs/uuid). Updates `concread` from 0.4.6 to 0.5.0 - [Commits](https://github.com/kanidm/concread/commits) Updates `toml` from 0.8.11 to 0.8.12 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.11...toml-v0.8.12) Updates `uuid` from 1.7.0 to 1.8.0 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.7.0...1.8.0) --- updated-dependencies: - dependency-name: concread dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all ... Signed-off-by: dependabot[bot] --- Cargo.lock | 23 +++++++++++++++-------- Cargo.toml | 6 +++--- 2 files changed, 18 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2ddbba4..f912305 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -99,6 +99,12 @@ dependencies = [ "windows-sys 0.52.0", ] +[[package]] +name = "arc-swap" +version = "1.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457" + [[package]] name = "autocfg" version = "1.1.0" @@ -221,11 +227,12 @@ checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" [[package]] name = "concread" -version = "0.4.6" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d12e4b28df8cea511676b6edbc9ea833e4a4c7b2cccfbe9e905ac11e0bc0794c" +checksum = "b4539869aeea73afd414cc1750eceada0d042764f2d28873d74fbbd81610bffe" dependencies = [ "ahash", + "arc-swap", "crossbeam-epoch", "crossbeam-queue", "crossbeam-utils", @@ -954,9 +961,9 @@ dependencies = [ [[package]] name = "toml" -version = "0.8.11" +version = "0.8.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af06656561d28735e9c1cd63dfd57132c8155426aa6af24f36a00a351f88c48e" +checksum = "e9dd1545e8208b4a5af1aa9bbd0b4cf7e9ea08fabc5d0a5c67fcaafa17433aa3" dependencies = [ "serde", "serde_spanned", @@ -975,9 +982,9 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.22.7" +version = "0.22.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "18769cd1cec395d70860ceb4d932812a0b4d06b1a4bb336745a4d21b9496e992" +checksum = "8e40bb779c5187258fd7aad0eb68cb8706a0a81fa712fbea808ab43c4b8374c4" dependencies = [ "indexmap", "serde", @@ -1098,9 +1105,9 @@ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "uuid" -version = "1.7.0" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a" +checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" dependencies = [ "serde", ] diff --git a/Cargo.toml b/Cargo.toml index e558057..32e297b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] -concread = "^0.4.6" +concread = "^0.5.0" clap = { version = "4.5", features = ["derive", "env"] } futures-util = { version = "^0.3.30", features = ["sink"] } hashbrown = { version = "0.14", features = ["serde"] } @@ -18,7 +18,7 @@ tokio = { version = "^1.36.0", features = ["rt", "rt-multi-thread", "macros", "n tokio-util = { version = "^0.7.10", features = ["codec"] } tokio-openssl = "^0.6.4" -toml = "^0.8.11" +toml = "^0.8.12" tracing = { version = "^0.1.40", features = ["max_level_trace", "release_max_level_debug"] } @@ -26,7 +26,7 @@ tracing-forest = { version = "0.1.6", features = ["chrono", "smallvec", "tokio"] url = { version = "^2.5.0", features = ["serde"] } ldap3_proto = { version = "0.4.3", features = ["serde"] } -uuid = { version = "1.7.0", features = ["serde"] } +uuid = { version = "1.8.0", features = ["serde"] } [patch.crates-io] # ldap3_proto = { path = "../ldap3/proto" }