From 1fbaefa772f6e103030264322b88553394168b37 Mon Sep 17 00:00:00 2001 From: Joshua Wong Date: Tue, 18 Jun 2024 14:25:19 -0500 Subject: [PATCH] chore: remove once_cell dependency This was added to the [standard library](https://doc.rust-lang.org/std/cell/struct.OnceCell.html) in Rust 1.70 --- Cargo.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 2e894e8..4918095 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,6 @@ serde_yaml = "0.9.34" petgraph = "0.6.4" pretty_assertions = "1.4.0" indexmap = { version = "2.2.6", features = ["std"] } -once_cell = "1.19.0" regex = "1.10.4" rustc-hash = "2.0.0" smallvec = { version = "1.13.2", features = ["union", "const_new"] }