From 47f4c1b8653fb7dfd4278840dececef1dba7d0ed Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Tue, 12 Aug 2025 16:57:15 -0300 Subject: [PATCH] fix: remove duplicate once_cell dependency in Cargo.toml --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index bd5388a..1961035 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -48,8 +48,8 @@ axum = "0.7" tower = "0.4" tower-http = { version = "0.5", features = ["cors", "fs", "trace"] } hyper = { version = "1.0", features = ["full"] } -once_cell = "1.19.0" once_cell = "1.19.0" -once_cell = "1.19.0"which = "6.0" +once_cell = "1.19.0" +which = "6.0" [dev-dependencies] tempfile = "3.3.0"