diff --git a/Cargo.lock b/Cargo.lock index b034974f..c44e9aa3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3137,9 +3137,9 @@ dependencies = [ [[package]] name = "uuid" -version = "1.3.3" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "345444e32442451b267fc254ae85a209c64be56d2890e601a0c37ff0c3c5ecd2" +checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d" dependencies = [ "getrandom 0.2.9", ] diff --git a/crates/llm-chain-qdrant/Cargo.toml b/crates/llm-chain-qdrant/Cargo.toml index 923812a2..6220c255 100644 --- a/crates/llm-chain-qdrant/Cargo.toml +++ b/crates/llm-chain-qdrant/Cargo.toml @@ -20,7 +20,7 @@ qdrant-client = "1.3.0" serde = "1.0.164" serde_json = "1.0.99" thiserror = "1.0.40" -uuid = "1.3.3" +uuid = "1.4.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 134aafae..f75bd80a 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.3.3", features = ["v4"] } +uuid = { version = "1.4.1", features = ["v4"] } derive_builder = "0.12.0" serde_json = "1.0.99" reqwest = { version = "0.11.18", features = ["json"] }