From 016eb915bd04ca5f7a87847e67a4f6a2c3904ebc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Apr 2022 07:02:31 +0000 Subject: [PATCH] chore(deps): Bump toml_edit from 0.13.4 to 0.14.2 Bumps [toml_edit](https://github.com/ordian/toml_edit) from 0.13.4 to 0.14.2. - [Release notes](https://github.com/ordian/toml_edit/releases) - [Changelog](https://github.com/ordian/toml_edit/blob/master/CHANGELOG.md) - [Commits](https://github.com/ordian/toml_edit/compare/v0.13.4...v0.14.2) --- updated-dependencies: - dependency-name: toml_edit dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 16 ++++++++++++++-- Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2c00694..44c9cb8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1488,6 +1488,18 @@ dependencies = [ "serde", ] +[[package]] +name = "toml_edit" +version = "0.14.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "86e793cd7300306ebefde30a6282a9016899b7bad63799511253d95518a62bcd" +dependencies = [ + "combine", + "indexmap", + "itertools", + "serde", +] + [[package]] name = "trycmd" version = "0.13.3" @@ -1501,7 +1513,7 @@ dependencies = [ "serde", "shlex", "snapbox", - "toml_edit", + "toml_edit 0.13.4", ] [[package]] @@ -1557,7 +1569,7 @@ dependencies = [ "proc-exit", "serde", "serde_json", - "toml_edit", + "toml_edit 0.14.2", "trycmd", "typed-arena", "typos", diff --git a/Cargo.toml b/Cargo.toml index 8a8d5c3..489f35b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -68,7 +68,7 @@ clap = "3.1" clap-verbosity-flag = "1.0" ignore = "0.4" serde = { version = "1.0", features = ["derive"] } -toml_edit = { version = "0.13.4", features = ["easy"] } +toml_edit = { version = "0.14.2", features = ["easy"] } log = "0.4" env_logger = { version = "0.9", default-features = false, features = ["termcolor"] } atty = "0.2.14"