From 337a99a6a9b9f1477ac5b51c079d474fbec62ce8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Mar 2024 21:05:55 +0000 Subject: [PATCH] Bump toml from 0.5.11 to 0.8.12 Bumps [toml](https://github.com/toml-rs/toml) from 0.5.11 to 0.8.12. - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.5.11...toml-v0.8.12) --- updated-dependencies: - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 64 ++++++++++++++++++++++---- Cargo.toml | 2 +- crates/maple_config/doc_gen/Cargo.toml | 2 +- 3 files changed, 57 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 95450c4c4..b87b4325b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -228,7 +228,7 @@ checksum = "031718ddb8f78aa5def78a09e90defe30151d1f6c672f937af4dd916429ed996" dependencies = [ "semver", "serde", - "toml", + "toml 0.5.11", "url", ] @@ -424,7 +424,7 @@ dependencies = [ "serde", "serde_json", "tokio", - "toml", + "toml 0.8.12", "tracing", "which", ] @@ -678,8 +678,8 @@ dependencies = [ "maple_config", "quote", "syn 1.0.109", - "toml", - "toml_edit", + "toml 0.8.12", + "toml_edit 0.21.1", ] [[package]] @@ -1432,7 +1432,7 @@ dependencies = [ "paths", "serde", "serde_json", - "toml", + "toml 0.8.12", "types", ] @@ -1478,7 +1478,7 @@ dependencies = [ "subprocess", "thiserror", "tokio", - "toml", + "toml 0.8.12", "tracing", "tree_sitter", "types", @@ -1513,7 +1513,7 @@ dependencies = [ "serde_json", "thiserror", "tokio", - "toml", + "toml 0.8.12", "tracing", "which", ] @@ -2245,6 +2245,15 @@ dependencies = [ "syn 2.0.52", ] +[[package]] +name = "serde_spanned" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1" +dependencies = [ + "serde", +] + [[package]] name = "serde_urlencoded" version = "0.7.1" @@ -2584,11 +2593,26 @@ dependencies = [ "serde", ] +[[package]] +name = "toml" +version = "0.8.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e9dd1545e8208b4a5af1aa9bbd0b4cf7e9ea08fabc5d0a5c67fcaafa17433aa3" +dependencies = [ + "serde", + "serde_spanned", + "toml_datetime", + "toml_edit 0.22.8", +] + [[package]] name = "toml_datetime" version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" +dependencies = [ + "serde", +] [[package]] name = "toml_edit" @@ -2598,7 +2622,20 @@ checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1" dependencies = [ "indexmap", "toml_datetime", - "winnow", + "winnow 0.5.40", +] + +[[package]] +name = "toml_edit" +version = "0.22.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c12219811e0c1ba077867254e5ad62ee2c9c190b0d957110750ac0cda1ae96cd" +dependencies = [ + "indexmap", + "serde", + "serde_spanned", + "toml_datetime", + "winnow 0.6.5", ] [[package]] @@ -2840,7 +2877,7 @@ dependencies = [ "once_cell", "rand", "serde", - "toml", + "toml 0.8.12", "tracing", "tree-sitter", "tree-sitter-bash", @@ -3339,6 +3376,15 @@ dependencies = [ "memchr", ] +[[package]] +name = "winnow" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dffa400e67ed5a4dd237983829e66475f0a4a26938c4b04c21baede6262215b8" +dependencies = [ + "memchr", +] + [[package]] name = "winreg" version = "0.50.0" diff --git a/Cargo.toml b/Cargo.toml index a675cb4e9..e15592eb2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -78,7 +78,7 @@ syntect = "5.0.0" subprocess = { git = "https://github.com/hniksic/rust-subprocess" } thiserror = "1.0" tokio = "1.36" -toml = "0.5" +toml = "0.8" tracing = "0.1" tracing-appender = "0.2" tracing-subscriber = "0.3" diff --git a/crates/maple_config/doc_gen/Cargo.toml b/crates/maple_config/doc_gen/Cargo.toml index ca2e2dd98..b5d9ce9d3 100644 --- a/crates/maple_config/doc_gen/Cargo.toml +++ b/crates/maple_config/doc_gen/Cargo.toml @@ -7,7 +7,7 @@ description = "Generate config markdown document from the inline docs" [dependencies] inflections = "1.1.1" maple_config = { path = "../" } -toml = "0.5" +toml = "0.8" syn = { version = "1", features = ["full"] } quote = "1" itertools = "0.12.0"