From 5c1c057bfbcc55d05938a5b866428d86e6fe9f0a Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Tue, 12 Nov 2024 15:21:42 -0800 Subject: [PATCH] Disable toml "display" feature --- codegen/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codegen/Cargo.toml b/codegen/Cargo.toml index 1e25da5129..76fe30674a 100644 --- a/codegen/Cargo.toml +++ b/codegen/Cargo.toml @@ -24,7 +24,7 @@ serde = "1.0.88" serde_json = "1.0.38" syn = { version = "2", features = ["derive", "full", "parsing", "printing"], default-features = false } syn-codegen = { path = "../json", default-features = false } -toml = "0.8" +toml = { version = "0.8", default-features = false, features = ["parse"] } [workspace] [patch.crates-io]