From 18c09b1ea9f57302af8e552d2ed6eb3e3bf0c515 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 17 Dec 2023 23:14:32 +0000 Subject: [PATCH] chore(deps): bump uuid from 1.5.0 to 1.6.1 Bumps [uuid](https://github.com/uuid-rs/uuid) from 1.5.0 to 1.6.1. - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.5.0...1.6.1) --- updated-dependencies: - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- crates/llm-chain-milvus/Cargo.toml | 2 +- crates/llm-chain-qdrant/Cargo.toml | 2 +- crates/llm-chain/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 786b8c34..6dee1d0f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3931,9 +3931,9 @@ checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" [[package]] name = "uuid" -version = "1.5.0" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "88ad59a7560b41a70d191093a945f0b87bc1deeda46fb237479708a1d6b6cdfc" +checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560" dependencies = [ "getrandom 0.2.11", ] diff --git a/crates/llm-chain-milvus/Cargo.toml b/crates/llm-chain-milvus/Cargo.toml index 9e5db37a..cda2f01e 100644 --- a/crates/llm-chain-milvus/Cargo.toml +++ b/crates/llm-chain-milvus/Cargo.toml @@ -17,7 +17,7 @@ llm-chain = { path = "../llm-chain", version = "0.13.0", default-features = fals serde = "1.0.164" serde_json = "1.0.99" thiserror = "1.0.40" -uuid = "1.3.3" +uuid = "1.6.1" milvus-sdk-rust = "0.1.0" [dev-dependencies] diff --git a/crates/llm-chain-qdrant/Cargo.toml b/crates/llm-chain-qdrant/Cargo.toml index a480ad7e..7054fff7 100644 --- a/crates/llm-chain-qdrant/Cargo.toml +++ b/crates/llm-chain-qdrant/Cargo.toml @@ -20,7 +20,7 @@ qdrant-client = "1.1.2" serde.workspace = true serde_json.workspace = true thiserror.workspace = true -uuid = "1.3.3" +uuid = "1.6.1" [dev-dependencies] llm-chain-openai = { path = "../llm-chain-openai" } diff --git a/crates/llm-chain/Cargo.toml b/crates/llm-chain/Cargo.toml index a1ee7dea..7d88173e 100644 --- a/crates/llm-chain/Cargo.toml +++ b/crates/llm-chain/Cargo.toml @@ -23,7 +23,7 @@ tokio = { version = "1.28.2", features = ["fs", "io-util", "rt", "macros"] } markdown = { version = "1.0.0-alpha.8" } tera = { version = "1.19.0" } lazy_static = "1.4.0" -uuid = { version = "1.4.1", features = ["v4"] } +uuid = { version = "1.6.1", features = ["v4"] } derive_builder = "0.12.0" serde_json = "1.0.99" reqwest = { version = "0.11.18", features = ["json"] }