From 960200fa5b24792eb4041db0a35405707850863f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 7 May 2023 17:03:20 +0200 Subject: [PATCH] Bump hcl-rs from 0.10.0 to 0.14.2 (#33) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [hcl-rs](https://github.com/martinohmann/hcl-rs) from 0.10.0 to 0.14.2.
Release notes

Sourced from hcl-rs's releases.

hcl-rs: v0.14.2

0.14.2 (2023-05-02)

Features

Dependencies

hcl-rs: v0.14.1

Dependencies

hcl-rs: v0.14.0

0.14.0 (2023-03-16)

⚠ BREAKING CHANGES

Features

Miscellaneous Chores

Dependencies

hcl-rs: v0.13.3

0.13.3 (2023-03-10)

... (truncated)

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=hcl-rs&package-manager=cargo&previous-version=0.10.0&new-version=0.14.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 36 ++++++++++++++++++++++++++++++++---- Cargo.toml | 2 +- 2 files changed, 33 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3d72549..45564fb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -364,19 +364,31 @@ version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" +[[package]] +name = "hcl-primitives" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6b293c5397cb844292c1205a91899ab0e65cb2bed7a7794ee95038945059a74" +dependencies = [ + "itoa", + "kstring", + "ryu", + "serde", + "unicode-ident", +] + [[package]] name = "hcl-rs" -version = "0.10.0" +version = "0.14.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0fe224b37911f4adb303a273f37fb1a45c58c183aa165d9baeca798c509658c" +checksum = "cd33f7c4bdc89b0d4193395eb9a5147619c697beb2336b5faf04d910ad42620e" dependencies = [ + "hcl-primitives", "indexmap", "itoa", "pest", "pest_derive", - "ryu", "serde", - "unicode-ident", "vecmap-rs", ] @@ -480,6 +492,16 @@ dependencies = [ "wasm-bindgen", ] +[[package]] +name = "kstring" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec3066350882a1cd6d950d055997f379ac37fd39f81cd4d8ed186032eb3c5747" +dependencies = [ + "serde", + "static_assertions", +] + [[package]] name = "libc" version = "0.2.143" @@ -755,6 +777,12 @@ dependencies = [ "digest", ] +[[package]] +name = "static_assertions" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" + [[package]] name = "strsim" version = "0.10.0" diff --git a/Cargo.toml b/Cargo.toml index e88dd04..26fefca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ clap = { version = "4.0", features = ["derive"] } pest = "2.0" pest_derive = "2.0" regex = "1" -hcl-rs = "0.10" +hcl-rs = "0.14" itertools = "0.10" chrono = "0.4" log = "0.4"