From 33d7b303b6d5f1e5135a2eeafe6d48415070eafa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Sep 2023 10:30:23 +0000 Subject: [PATCH] Update toml requirement from 0.7 to 0.8 Updates the requirements on [toml](https://github.com/toml-rs/toml) to permit the latest version. - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.7.0...toml-v0.8.0) --- updated-dependencies: - dependency-name: toml dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a6950fc..917d16b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,6 +16,6 @@ reqwest = { version = "0.11", features = ["json"] } serde = {version = "1.0", features = ["derive"] } serde_json = "1.0" tokio = { version = "1.12.0", features = ["full"] } -toml = "0.7" +toml = "0.8" tui = { version = "0.14", default-features = false, features = ['crossterm', 'serde'] } unicode-width = "0.1.8"