From 9efeb25424f2bf91e25a92f0dd2ca0d3bc74d70f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Feb 2026 09:49:08 +0000 Subject: [PATCH] chore(deps)(deps): bump uuid from 1.19.0 to 1.20.0 Bumps [uuid](https://github.com/uuid-rs/uuid) from 1.19.0 to 1.20.0. - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/v1.19.0...v1.20.0) --- updated-dependencies: - dependency-name: uuid dependency-version: 1.20.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- crates/terraphim_agent/Cargo.toml | 2 +- crates/terraphim_agent_evolution/Cargo.toml | 2 +- crates/terraphim_agent_messaging/Cargo.toml | 2 +- crates/terraphim_agent_registry/Cargo.toml | 2 +- crates/terraphim_agent_supervisor/Cargo.toml | 2 +- crates/terraphim_build_args/Cargo.toml | 2 +- crates/terraphim_github_runner_server/Cargo.toml | 2 +- crates/terraphim_goal_alignment/Cargo.toml | 2 +- crates/terraphim_kg_agents/Cargo.toml | 2 +- crates/terraphim_kg_orchestration/Cargo.toml | 2 +- crates/terraphim_middleware/Cargo.toml | 2 +- crates/terraphim_service/Cargo.toml | 2 +- crates/terraphim_task_decomposition/Cargo.toml | 2 +- crates/terraphim_types/Cargo.toml | 2 +- terraphim_server/Cargo.toml | 2 +- 17 files changed, 18 insertions(+), 18 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index be7b02be1..1cab49e7c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -10805,9 +10805,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "uuid" -version = "1.19.0" +version = "1.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a" +checksum = "ee48d38b119b0cd71fe4141b30f5ba9c7c5d9f4e7a3a8b4a674e4b6ef789976f" dependencies = [ "atomic", "getrandom 0.3.4", diff --git a/Cargo.toml b/Cargo.toml index 56e137013..79db19ba3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-feature # Direct HTTP LLM client approach (removed rig-core) serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -uuid = { version = "1.19", features = ["v4", "serde"] } +uuid = { version = "1.20", features = ["v4", "serde"] } chrono = { version = "0.4", features = ["serde"] } async-trait = "0.1" thiserror = "1.0" diff --git a/crates/terraphim_agent/Cargo.toml b/crates/terraphim_agent/Cargo.toml index 105a979e4..ea3bec262 100644 --- a/crates/terraphim_agent/Cargo.toml +++ b/crates/terraphim_agent/Cargo.toml @@ -56,7 +56,7 @@ walkdir = "2.0" async-trait = "0.1" chrono = { version = "0.4", features = ["serde"] } strsim = "0.11" # For edit distance / fuzzy matching in forgiving CLI -uuid = { version = "1.19", features = ["v4", "serde"] } +uuid = { version = "1.20", features = ["v4", "serde"] } dialoguer = "0.11" # Interactive CLI prompts for onboarding wizard console = "0.15" # Terminal styling for wizard output diff --git a/crates/terraphim_agent_evolution/Cargo.toml b/crates/terraphim_agent_evolution/Cargo.toml index 99c6a8c2d..c578af408 100644 --- a/crates/terraphim_agent_evolution/Cargo.toml +++ b/crates/terraphim_agent_evolution/Cargo.toml @@ -14,7 +14,7 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" thiserror = "1.0" tokio = { version = "1.0", features = ["full"] } -uuid = { version = "1.19", features = ["v4", "serde"] } +uuid = { version = "1.20", features = ["v4", "serde"] } # Terraphim dependencies terraphim_persistence = { path = "../terraphim_persistence" } diff --git a/crates/terraphim_agent_messaging/Cargo.toml b/crates/terraphim_agent_messaging/Cargo.toml index 9508b0142..4a71b36dd 100644 --- a/crates/terraphim_agent_messaging/Cargo.toml +++ b/crates/terraphim_agent_messaging/Cargo.toml @@ -26,7 +26,7 @@ serde = { version = "1.0.198", features = ["derive"] } serde_json = "1.0.116" # Unique identifiers and time handling -uuid = { version = "1.19", features = ["v4", "serde"] } +uuid = { version = "1.20", features = ["v4", "serde"] } chrono = { version = "0.4", features = ["serde"] } # Logging diff --git a/crates/terraphim_agent_registry/Cargo.toml b/crates/terraphim_agent_registry/Cargo.toml index 1946fe106..f2100477e 100644 --- a/crates/terraphim_agent_registry/Cargo.toml +++ b/crates/terraphim_agent_registry/Cargo.toml @@ -30,7 +30,7 @@ serde = { version = "1.0.198", features = ["derive"] } serde_json = "1.0.116" # Unique identifiers and time handling -uuid = { version = "1.19", features = ["v4", "serde"] } +uuid = { version = "1.20", features = ["v4", "serde"] } chrono = { version = "0.4", features = ["serde"] } # Logging diff --git a/crates/terraphim_agent_supervisor/Cargo.toml b/crates/terraphim_agent_supervisor/Cargo.toml index 76298f1b0..78381c1a3 100644 --- a/crates/terraphim_agent_supervisor/Cargo.toml +++ b/crates/terraphim_agent_supervisor/Cargo.toml @@ -26,7 +26,7 @@ serde = { version = "1.0.198", features = ["derive"] } serde_json = "1.0.116" # Unique identifiers and time handling -uuid = { version = "1.19", features = ["v4", "serde"] } +uuid = { version = "1.20", features = ["v4", "serde"] } chrono = { version = "0.4", features = ["serde"] } # Logging diff --git a/crates/terraphim_build_args/Cargo.toml b/crates/terraphim_build_args/Cargo.toml index 621ae48fb..98ed73698 100644 --- a/crates/terraphim_build_args/Cargo.toml +++ b/crates/terraphim_build_args/Cargo.toml @@ -30,7 +30,7 @@ regex = "1.11" walkdir = "2.4" once_cell = "1.19" chrono = { version = "0.4", features = ["serde"] } -uuid = { version = "1.19", features = ["serde", "v4"] } +uuid = { version = "1.20", features = ["serde", "v4"] } [dev-dependencies] tempfile = "3.23" diff --git a/crates/terraphim_github_runner_server/Cargo.toml b/crates/terraphim_github_runner_server/Cargo.toml index 93daf00b1..72c8e86dd 100644 --- a/crates/terraphim_github_runner_server/Cargo.toml +++ b/crates/terraphim_github_runner_server/Cargo.toml @@ -40,7 +40,7 @@ reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-feature chrono = "0.4" # UUID -uuid = { version = "1.0", features = ["v4", "serde"] } +uuid = { version = "1.20", features = ["v4", "serde"] } # Async traits async-trait = "0.1" diff --git a/crates/terraphim_goal_alignment/Cargo.toml b/crates/terraphim_goal_alignment/Cargo.toml index 5effc67b1..15556d2c2 100644 --- a/crates/terraphim_goal_alignment/Cargo.toml +++ b/crates/terraphim_goal_alignment/Cargo.toml @@ -29,7 +29,7 @@ serde = { version = "1.0.198", features = ["derive"] } serde_json = "1.0.116" # Unique identifiers and time handling -uuid = { version = "1.19", features = ["v4", "serde"] } +uuid = { version = "1.20", features = ["v4", "serde"] } chrono = { version = "0.4", features = ["serde"] } # Logging diff --git a/crates/terraphim_kg_agents/Cargo.toml b/crates/terraphim_kg_agents/Cargo.toml index 9aea08f79..1cd449bbd 100644 --- a/crates/terraphim_kg_agents/Cargo.toml +++ b/crates/terraphim_kg_agents/Cargo.toml @@ -14,7 +14,7 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" thiserror = "1.0" tokio = { version = "1.0", features = ["full"] } -uuid = { version = "1.19", features = ["v4"] } +uuid = { version = "1.20", features = ["v4"] } # Terraphim dependencies terraphim_agent_registry = { path = "../terraphim_agent_registry" } diff --git a/crates/terraphim_kg_orchestration/Cargo.toml b/crates/terraphim_kg_orchestration/Cargo.toml index 7339e7bbd..55ff2532e 100644 --- a/crates/terraphim_kg_orchestration/Cargo.toml +++ b/crates/terraphim_kg_orchestration/Cargo.toml @@ -30,7 +30,7 @@ serde = { version = "1.0.198", features = ["derive"] } serde_json = "1.0.116" # Unique identifiers and time handling -uuid = { version = "1.19", features = ["v4", "serde"] } +uuid = { version = "1.20", features = ["v4", "serde"] } chrono = { version = "0.4", features = ["serde"] } # Logging diff --git a/crates/terraphim_middleware/Cargo.toml b/crates/terraphim_middleware/Cargo.toml index 0580e94d8..c62e43f48 100644 --- a/crates/terraphim_middleware/Cargo.toml +++ b/crates/terraphim_middleware/Cargo.toml @@ -52,7 +52,7 @@ tokio = { version = "1", features = ["macros", "rt-multi-thread"] } futures = "0.3" test-log = { version = "0.2.19", features = ["trace"] } serial_test = "3.3" -uuid = { version = "1.19.0", features = ["v4"] } +uuid = { version = "1.20.0", features = ["v4"] } dotenvy = "0.15.7" walkdir = "2.4.0" env_logger = "0.11" diff --git a/crates/terraphim_service/Cargo.toml b/crates/terraphim_service/Cargo.toml index d3c661c66..f1e3d9713 100644 --- a/crates/terraphim_service/Cargo.toml +++ b/crates/terraphim_service/Cargo.toml @@ -31,7 +31,7 @@ tokio = { workspace = true } async-trait = "0.1" futures-util = "0.3" async-stream = "0.3" -uuid = { version = "1.19", features = ["v4", "serde"] } +uuid = { version = "1.20", features = ["v4", "serde"] } chrono = { version = "0.4", features = ["serde"] } # HTTP client for API calls and OpenRouter integration diff --git a/crates/terraphim_task_decomposition/Cargo.toml b/crates/terraphim_task_decomposition/Cargo.toml index f26f04de4..320b2c6b1 100644 --- a/crates/terraphim_task_decomposition/Cargo.toml +++ b/crates/terraphim_task_decomposition/Cargo.toml @@ -30,7 +30,7 @@ serde = { version = "1.0.198", features = ["derive"] } serde_json = "1.0.116" # Unique identifiers and time handling -uuid = { version = "1.19", features = ["v4", "serde"] } +uuid = { version = "1.20", features = ["v4", "serde"] } chrono = { version = "0.4", features = ["serde"] } # Logging diff --git a/crates/terraphim_types/Cargo.toml b/crates/terraphim_types/Cargo.toml index 95d36d076..1dea15cb9 100644 --- a/crates/terraphim_types/Cargo.toml +++ b/crates/terraphim_types/Cargo.toml @@ -26,7 +26,7 @@ ulid = { version = "1.0.0", features = ["serde", "uuid"] } # Default uuid for native targets [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -uuid = { version = "1.19.0", features = ["v4", "serde"] } +uuid = { version = "1.20.0", features = ["v4", "serde"] } # WASM-specific dependencies (uuid with js feature, getrandom with wasm_js) [target.'cfg(target_arch = "wasm32")'.dependencies] diff --git a/terraphim_server/Cargo.toml b/terraphim_server/Cargo.toml index 19bf827f9..bbcc0671d 100644 --- a/terraphim_server/Cargo.toml +++ b/terraphim_server/Cargo.toml @@ -46,7 +46,7 @@ schemars = "0.8.22" regex = "1.11.0" walkdir = "2.4" chrono = { version = "0.4", features = ["serde"] } -uuid = { version = "1.19", features = ["v4", "serde"] } +uuid = { version = "1.20", features = ["v4", "serde"] } futures-util = "0.3" rand = "0.9"