chore(deps): move more things to workspace (#4881)

This commit is contained in:
Matthias Seitz
2023-10-02 22:45:36 +02:00
committed by GitHub
parent fbfca3f55f
commit f59db3151d
14 changed files with 54 additions and 27 deletions

35
Cargo.lock generated
View File

@ -5008,7 +5008,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
dependencies = [
"once_cell",
"toml_edit",
"toml_edit 0.19.15",
]
[[package]]
@ -5469,7 +5469,7 @@ dependencies = [
"tempfile",
"thiserror",
"tokio",
"toml 0.7.8",
"toml 0.8.1",
"tracing",
"tui",
"vergen",
@ -5594,7 +5594,7 @@ dependencies = [
"serde",
"serde_json",
"tempfile",
"toml 0.7.8",
"toml 0.8.1",
]
[[package]]
@ -6056,7 +6056,7 @@ dependencies = [
"thiserror",
"tokio",
"tokio-stream",
"toml 0.7.8",
"toml 0.8.1",
"tracing",
"triehash",
"url",
@ -7812,7 +7812,19 @@ dependencies = [
"serde",
"serde_spanned",
"toml_datetime",
"toml_edit",
"toml_edit 0.19.15",
]
[[package]]
name = "toml"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bc1433177506450fe920e46a4f9812d0c211f5dd556da10e731a0a3dfa151f0"
dependencies = [
"serde",
"serde_spanned",
"toml_datetime",
"toml_edit 0.20.1",
]
[[package]]
@ -7837,6 +7849,19 @@ dependencies = [
"winnow",
]
[[package]]
name = "toml_edit"
version = "0.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca676d9ba1a322c1b64eb8045a5ec5c0cfb0c9d08e15e9ff622589ad5221c8fe"
dependencies = [
"indexmap 2.0.2",
"serde",
"serde_spanned",
"toml_datetime",
"winnow",
]
[[package]]
name = "toolchain_find"
version = "0.4.0"