From 03642f4c2ebea1eefb4bd383b305d38f3bea4e78 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Nov 2023 10:04:49 +0100 Subject: [PATCH] Bump uuid from 1.4.1 to 1.5.0 (#2993) Bumps [uuid](https://github.com/uuid-rs/uuid) from 1.4.1 to 1.5.0. - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.5.0) --- updated-dependencies: - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- lib/api/Cargo.toml | 2 +- lib/collection/Cargo.toml | 2 +- lib/segment/Cargo.toml | 2 +- lib/storage/Cargo.toml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 59510a2dd5..b9aba90ce1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5492,9 +5492,9 @@ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "uuid" -version = "1.4.1" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d" +checksum = "88ad59a7560b41a70d191093a945f0b87bc1deeda46fb237479708a1d6b6cdfc" dependencies = [ "getrandom 0.2.11", "serde", diff --git a/Cargo.toml b/Cargo.toml index 7398356eb7..45feb0cdfb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -59,7 +59,7 @@ futures = "0.3.28" futures-util = "0.3.27" clap = { version = "4.4.8", features = ["derive"] } serde_cbor = { version = "0.11.2" } -uuid = { version = "1.4", features = ["v4", "serde"] } +uuid = { version = "1.5", features = ["v4", "serde"] } sys-info = "0.9.1" wal = { git = "https://github.com/qdrant/wal.git", rev = "f62d2844ba0bb2b1f1aeb9a4766cdbd46f29d594" } diff --git a/lib/api/Cargo.toml b/lib/api/Cargo.toml index 890a55e97c..232cc06e88 100644 --- a/lib/api/Cargo.toml +++ b/lib/api/Cargo.toml @@ -20,7 +20,7 @@ prost-types = "0.11.9" serde = { version = "~1.0", features = ["derive"] } serde_json = "~1.0" schemars = { version = "0.8.15", features = ["uuid1", "preserve_order", "chrono"] } -uuid = { version = "1.4", features = ["v4", "serde"] } +uuid = { version = "1.5", features = ["v4", "serde"] } tower = "0.4.13" tokio = "1.32.0" rand = "0.8.5" diff --git a/lib/collection/Cargo.toml b/lib/collection/Cargo.toml index 5ccab3d5a7..8b760061eb 100644 --- a/lib/collection/Cargo.toml +++ b/lib/collection/Cargo.toml @@ -44,7 +44,7 @@ async-trait = "0.1.73" arc-swap = "1.6.0" tonic = { version = "0.9.2", features = ["gzip", "tls"] } tower = "0.4.13" -uuid = { version = "1.4", features = ["v4", "serde"] } +uuid = { version = "1.5", features = ["v4", "serde"] } url = { version = "2", features = ["serde"] } validator = { version = "0.16", features = ["derive"] } actix-web-validator = "5.0.1" diff --git a/lib/segment/Cargo.toml b/lib/segment/Cargo.toml index 9bc5cfbb41..161d59e2b3 100644 --- a/lib/segment/Cargo.toml +++ b/lib/segment/Cargo.toml @@ -32,7 +32,7 @@ rayon = "1.7.0" num_cpus = "1.16" itertools = "0.11" rocksdb = { version = "0.21.0", default-features = false, features = [ "snappy" ] } -uuid = { version = "1.4", features = ["v4", "serde"] } +uuid = { version = "1.5", features = ["v4", "serde"] } bincode = "1.3" serde = { version = "~1.0", features = ["derive", "rc"] } serde_json = "~1.0" diff --git a/lib/storage/Cargo.toml b/lib/storage/Cargo.toml index 71fed1ab71..e95d3c2a1a 100644 --- a/lib/storage/Cargo.toml +++ b/lib/storage/Cargo.toml @@ -51,7 +51,7 @@ collection = { path = "../collection" } api = { path = "../api" } futures = "0.3.28" anyhow = "1.0.75" -uuid = "1.4.1" +uuid = "1.5.0" url = "2.4.1" reqwest = { version = "0.11", default-features = false, features = ["stream", "rustls-tls"] } tempfile = "3.8.1"