From d2eb7d9935d7e83d5fb2c153724b32c90ec7ea66 Mon Sep 17 00:00:00 2001 From: OliverNChalk <11343499+OliverNChalk@users.noreply.github.com> Date: Tue, 10 Sep 2024 20:14:39 -0500 Subject: [PATCH] build: use double quotes in TOML --- Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index adebf10..1b851ab 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,11 +6,11 @@ edition = "2021" readme = "README.md" [lints.clippy] -cast_possible_truncation = 'warn' -cast_possible_wrap = 'warn' -cast_sign_loss = 'warn' +cast_possible_truncation = "warn" +cast_possible_wrap = "warn" +cast_sign_loss = "warn" # See `clippy.toml`. -disallowed_methods = 'warn' +disallowed_methods = "warn" [dependencies] clap = { version = "4.2.7", features = ["derive"] }