build(deps): bump the deps group with 2 updates (#1475)

Bumps the deps group with 2 updates: [tracing-log](https://github.com/tokio-rs/tracing) and [toml_edit](https://github.com/toml-rs/toml).


Updates `tracing-log` from 0.1.4 to 0.2.0
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](https://github.com/tokio-rs/tracing/compare/tracing-log-0.1.4...tracing-log-0.2.0)

Updates `toml_edit` from 0.20.5 to 0.20.7
- [Commits](https://github.com/toml-rs/toml/compare/v0.20.5...v0.20.7)

---
updated-dependencies:
- dependency-name: tracing-log
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: toml_edit
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
...

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-10-28 01:41:46 +00:00 committed by GitHub
parent 24f5796a7c
commit b86bf5f2e1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 10 deletions

14
Cargo.lock generated
View file

@ -341,7 +341,7 @@ dependencies = [
"serde_json",
"tempfile",
"thiserror",
"toml_edit 0.20.5",
"toml_edit 0.20.7",
"url",
]
@ -367,7 +367,7 @@ dependencies = [
"tempfile",
"thiserror",
"tokio",
"toml_edit 0.20.5",
"toml_edit 0.20.7",
"tracing",
"url",
]
@ -3774,7 +3774,7 @@ dependencies = [
"serde",
"serde_spanned",
"toml_datetime",
"toml_edit 0.20.5",
"toml_edit 0.20.7",
]
[[package]]
@ -3799,9 +3799,9 @@ dependencies = [
[[package]]
name = "toml_edit"
version = "0.20.5"
version = "0.20.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "782bf6c2ddf761c1e7855405e8975472acf76f7f36d0d4328bd3b7a2fae12a85"
checksum = "70f427fce4d84c72b5b732388bf4a9f4531b53f74e2887e3ecb2481f68f66d81"
dependencies = [
"indexmap 2.0.2",
"serde",
@ -3851,9 +3851,9 @@ dependencies = [
[[package]]
name = "tracing-log"
version = "0.1.4"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f751112709b4e791d8ce53e32c4ed2d353565a795ce84da2285393f41557bdf2"
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
dependencies = [
"log",
"once_cell",

View file

@ -41,7 +41,7 @@ tempfile = "3.5.0"
tokio = { version = "1.28.2", features = ["rt-multi-thread", "signal"], default-features = false }
tracing-core = "0.1.32"
tracing = { version = "0.1.39", default-features = false }
tracing-log = { version = "0.1.3", default-features = false }
tracing-log = { version = "0.2.0", default-features = false }
tracing-subscriber = { version = "0.3.17", features = ["fmt", "json", "ansi"], default-features = false }
[build-dependencies]

View file

@ -21,7 +21,7 @@ serde = { version = "1.0.163", features = ["derive"] }
serde-tuple-vec-map = "1.0.1"
serde_json = "1.0.107"
thiserror = "1.0.40"
toml_edit = { version = "0.20.0", features = ["serde"] }
toml_edit = { version = "0.20.7", features = ["serde"] }
url = { version = "2.3.1", features = ["serde"] }
[dev-dependencies]

View file

@ -34,7 +34,7 @@ url = "2.3.1"
[dev-dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
toml_edit = { version = "0.20.0", features = ["serde"] }
toml_edit = { version = "0.20.7", features = ["serde"] }
binstalk-downloader = { version = "0.9.3", path = "../binstalk-downloader", default-features = false, features = ["rustls"] }
[features]