From d3c47f1f37f204d6683be4c271338d1ebd5a25b8 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Mon, 2 Oct 2023 12:05:57 -0500 Subject: [PATCH] chore: Specify all of toml_edit's features This is preventing us from being able to update toml/toml_edit independent of each other. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a9b453599..8da61a4bf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -92,7 +92,7 @@ tempfile = "3.8.0" thiserror = "1.0.49" time = { version = "0.3", features = ["parsing", "formatting", "serde"] } toml = "0.7.6" -toml_edit = "0.19.14" +toml_edit = { version = "0.19.14", features = ["serde"] } tracing = "0.1.37" tracing-subscriber = { version = "0.3.17", features = ["env-filter"] } unicase = "2.7.0"