From 122d000d6b83dd9edeaa0bb63c38f14275c024d2 Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Tue, 7 Oct 2025 15:47:19 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(build):=20add=20toml=20depende?= =?UTF-8?q?ncy?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - add toml crate for configuration file parsing --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index a32a6d4..cb89ea2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,6 +30,7 @@ serde = { version = "1.0.228", features = ["derive"] } serde_json = "1.0.145" thiserror = "2.0.17" tokio = { version = "1.47.1", features = ["macros", "rt-multi-thread"] } +toml = "0.9.7" [lints.clippy] uninlined-format-args = "warn"