From e024b34f968d30a60e15f4a9f7d4673972784ed1 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Tue, 12 Mar 2024 18:17:45 -0400
Subject: [PATCH] [chore(cargo)](deps): Bump toml from 0.8.10 to 0.8.11 (#612)
Bumps [toml](https://github.com/toml-rs/toml) from 0.8.10 to 0.8.11.
Commits
eb86543
chore: Release
246b292
docs: Update changelog
d41c62c
Merge pull request #701 from
epage/cleanup
31457b3
refactor(error): Clean up highlight code
01d2f4a
Merge pull request #699 from
mahkoh/jorth/error-column
523969d
Merge pull request #700 from
epage/cleanup
bae685b
fix(edit): Deprecate 'Document'
3abcf90
fix(edit): Clarify Document as DocumentMut
fcf1deb
refactor(edit): Remove unused raw field on Document
4cd1e24
fix(de): Cut off multi-line error messages
- Additional commits viewable in compare
view
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=toml&package-manager=cargo&previous-version=0.8.10&new-version=0.8.11)](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 show ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@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 | 14 +++++++-------
homestar-runtime/Cargo.toml | 2 +-
2 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/Cargo.lock b/Cargo.lock
index 4c1289dc..e37e8621 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1020,7 +1020,7 @@ dependencies = [
"nom",
"pathdiff",
"serde",
- "toml 0.8.10",
+ "toml 0.8.11",
]
[[package]]
@@ -2736,7 +2736,7 @@ dependencies = [
"tokio-test",
"tokio-tungstenite",
"tokio-util",
- "toml 0.8.10",
+ "toml 0.8.11",
"tower",
"tower-http",
"tracing",
@@ -7148,15 +7148,15 @@ dependencies = [
[[package]]
name = "toml"
-version = "0.8.10"
+version = "0.8.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9a9aad4a3066010876e8dcf5a8a06e70a558751117a145c6ce2b82c2e2054290"
+checksum = "af06656561d28735e9c1cd63dfd57132c8155426aa6af24f36a00a351f88c48e"
dependencies = [
"indexmap 2.2.3",
"serde",
"serde_spanned",
"toml_datetime",
- "toml_edit 0.22.6",
+ "toml_edit 0.22.7",
]
[[package]]
@@ -7183,9 +7183,9 @@ dependencies = [
[[package]]
name = "toml_edit"
-version = "0.22.6"
+version = "0.22.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2c1b5fd4128cc8d3e0cb74d4ed9a9cc7c7284becd4df68f5f940e1ad123606f6"
+checksum = "18769cd1cec395d70860ceb4d932812a0b4d06b1a4bb336745a4d21b9496e992"
dependencies = [
"indexmap 2.2.3",
"serde",
diff --git a/homestar-runtime/Cargo.toml b/homestar-runtime/Cargo.toml
index 69178b4a..68e631da 100644
--- a/homestar-runtime/Cargo.toml
+++ b/homestar-runtime/Cargo.toml
@@ -170,7 +170,7 @@ tokio-stream = { version = "0.1", default-features = false, features = [
"sync",
] }
tokio-util = { version = "0.7", default-features = false }
-toml = { version = "0.8.8", features = ["display", "preserve_order"] }
+toml = { version = "0.8.11", features = ["display", "preserve_order"] }
tower = { version = "0.4", default-features = false, features = [
"log",
"timeout",