From 506f5d6599bd8c856f1c0e6ac217301e98f90f7e Mon Sep 17 00:00:00 2001 From: jyn Date: Sun, 2 Apr 2023 08:23:33 -0400 Subject: [PATCH] Update `toml` Combined with a PR to rustwide, this will remove a duplicate version of toml. --- Cargo.lock | 2 +- crates/metadata/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f59369d65..e383d31f7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1492,7 +1492,7 @@ version = "0.1.0" dependencies = [ "serde", "thiserror", - "toml 0.5.11", + "toml 0.7.3", ] [[package]] diff --git a/crates/metadata/Cargo.toml b/crates/metadata/Cargo.toml index ee0888903..613eae183 100644 --- a/crates/metadata/Cargo.toml +++ b/crates/metadata/Cargo.toml @@ -14,5 +14,5 @@ path = "lib.rs" [dependencies] serde = { version = "1.0", features = ["derive"] } -toml = { version = "0.5", default-features = false } +toml = { version = "0.7", default-features = false } thiserror = "1"