Update toml to 0.8
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
asonix 2023-09-26 18:04:49 -05:00
parent d524fe67d9
commit fd57c5f56c
2 changed files with 28 additions and 3 deletions

29
Cargo.lock generated
View file

@ -1848,7 +1848,7 @@ dependencies = [
"tokio-postgres", "tokio-postgres",
"tokio-uring", "tokio-uring",
"tokio-util", "tokio-util",
"toml 0.7.8", "toml 0.8.1",
"tracing", "tracing",
"tracing-actix-web", "tracing-actix-web",
"tracing-error", "tracing-error",
@ -2910,7 +2910,19 @@ dependencies = [
"serde", "serde",
"serde_spanned", "serde_spanned",
"toml_datetime", "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]] [[package]]
@ -2935,6 +2947,19 @@ dependencies = [
"winnow", "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.0",
"serde",
"serde_spanned",
"toml_datetime",
"winnow",
]
[[package]] [[package]]
name = "tonic" name = "tonic"
version = "0.9.2" version = "0.9.2"

View file

@ -62,7 +62,7 @@ tokio-util = { version = "0.7", default-features = false, features = [
"codec", "codec",
"io", "io",
] } ] }
toml = "0.7.0" toml = "0.8.0"
tracing = "0.1.15" tracing = "0.1.15"
tracing-error = "0.2.0" tracing-error = "0.2.0"
tracing-log = "0.1.2" tracing-log = "0.1.2"