From 6cc2322fa30c0ef28a80da25595107768131e70d Mon Sep 17 00:00:00 2001 From: Zachary Harrold Date: Thu, 10 Oct 2024 01:13:28 +1100 Subject: [PATCH] Remove `thiserror` from `bevy_time` (#15759) # Objective - Contributes to #15460 ## Solution - Removed `thiserror` from `bevy_time` ## Notes `thiserror` actually wasn't even used in this crate. --- crates/bevy_time/Cargo.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/bevy_time/Cargo.toml b/crates/bevy_time/Cargo.toml index 93d1428119..e12b04423c 100644 --- a/crates/bevy_time/Cargo.toml +++ b/crates/bevy_time/Cargo.toml @@ -26,7 +26,6 @@ bevy_utils = { path = "../bevy_utils", version = "0.15.0-dev" } # other crossbeam-channel = "0.5.0" serde = { version = "1", features = ["derive"], optional = true } -thiserror = "1.0" [lints] workspace = true