1
1
mirror of https://github.com/orhun/git-cliff.git synced 2024-12-03 06:05:13 +03:00

chore(deps): bump toml from 0.7.8 to 0.8.0 (#283)

Bumps [toml](https://github.com/toml-rs/toml) from 0.7.8 to 0.8.0.
- [Commits](https://github.com/toml-rs/toml/compare/toml-v0.7.8...toml-v0.8.0)

---
updated-dependencies:
- dependency-name: toml
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2023-09-13 22:54:40 +00:00 committed by GitHub
parent d5e49123ba
commit 88af5fcc0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

10
Cargo.lock generated
View File

@ -612,7 +612,7 @@ dependencies = [
"serde_regex",
"tera",
"thiserror",
"toml 0.7.8",
"toml 0.8.0",
]
[[package]]
@ -1827,9 +1827,9 @@ dependencies = [
[[package]]
name = "toml"
version = "0.7.8"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257"
checksum = "c226a7bba6d859b63c92c4b4fe69c5b6b72d0cb897dbc8e6012298e6154cb56e"
dependencies = [
"serde",
"serde_spanned",
@ -1848,9 +1848,9 @@ dependencies = [
[[package]]
name = "toml_edit"
version = "0.19.15"
version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
checksum = "8ff63e60a958cefbb518ae1fd6566af80d9d4be430a33f3723dfc47d1d411d95"
dependencies = [
"indexmap 2.0.0",
"serde",

View File

@ -24,7 +24,7 @@ serde_json = "1.0.106"
serde_regex = "1.1.0"
tera = "1.19.1"
indexmap = { version = "2.0.0", optional = true }
toml = "0.7.8"
toml = "0.8.0"
lazy-regex = "3.0.2"
[dependencies.git2]