From 932a5fd340169ce7c6f8192c4211e75094291209 Mon Sep 17 00:00:00 2001 From: Link Mauve Date: Thu, 13 Aug 2026 21:42:15 +0200 Subject: [PATCH] Bump both outdated dependencies Neither required any code change, and this lets us drop thiserror 1.x from the build. --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d55c7ed..c320768 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,10 +16,10 @@ dmabuf = [] [dependencies] ash = { git = "https://github.com/ash-rs/ash", rev = "55dd56906bbb5760e9e9e6c56f45be67f67e0649", features = ["loaded"] } futures-channel = { version = "0.3", default-features = false, features = ["std"] } -thiserror = "1.0" +thiserror = "2.0" tracing = "0.1" [dev-dependencies] env_logger = "0.11" -pollster = "0.4" +pollster = "1.0" tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }