From b49cd5aca7282855e67b5e7aa9a6b5dca1b37a70 Mon Sep 17 00:00:00 2001 From: Martin Geisler Date: Sat, 14 Sep 2024 21:21:27 +0200 Subject: [PATCH] Standardize on double quotes in Cargo.toml --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a13e01b..f1f4e14 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,7 +30,7 @@ all-features = true default = ["unicode-linebreak", "unicode-width", "smawk"] [lints.rust] -unexpected_cfgs = { level = "warn", check-cfg = ['cfg(fuzzing)'] } +unexpected_cfgs = { level = "warn", check-cfg = ["cfg(fuzzing)"] } [dependencies] hyphenation = { version = "0.8.4", optional = true, features = ["embed_en-us"] } @@ -43,5 +43,5 @@ unicode-width = { version = "0.1.10", optional = true } unic-emoji-char = "0.9.0" version-sync = "0.9.4" -[target.'cfg(unix)'.dev-dependencies] +[target."cfg(unix)".dev-dependencies] termion = "2.0.1"