1
0
mirror of https://github.com/containers/youki synced 2024-11-23 01:11:58 +01:00

chore(deps): bump tracing from 0.1.37 to 0.1.39

Bumps [tracing](https://github.com/tokio-rs/tracing) from 0.1.37 to 0.1.39.
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](https://github.com/tokio-rs/tracing/compare/tracing-0.1.37...tracing-0.1.39)

---
updated-dependencies:
- dependency-name: tracing
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2023-10-16 01:10:21 +00:00 committed by GitHub
parent e4d2b3972a
commit ffe9aecfca
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 10 additions and 11 deletions

13
Cargo.lock generated

@ -4088,11 +4088,10 @@ checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
[[package]]
name = "tracing"
version = "0.1.37"
version = "0.1.39"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
checksum = "ee2ef2af84856a50c1d430afce2fdded0a4ec7eda868db86409b4543df0797f9"
dependencies = [
"cfg-if",
"log",
"pin-project-lite",
"tracing-attributes",
@ -4101,9 +4100,9 @@ dependencies = [
[[package]]
name = "tracing-attributes"
version = "0.1.26"
version = "0.1.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab"
checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
dependencies = [
"proc-macro2",
"quote",
@ -4112,9 +4111,9 @@ dependencies = [
[[package]]
name = "tracing-core"
version = "0.1.31"
version = "0.1.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a"
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
dependencies = [
"once_cell",
"valuable",

@ -30,7 +30,7 @@ libbpf-sys = { version = "1.2.1", optional = true }
errno = { version = "0.3.5", optional = true }
libc = { version = "0.2.149", optional = true }
thiserror = "1.0.49"
tracing = { version = "0.1.37", features = ["attributes"] }
tracing = { version = "0.1.39", features = ["attributes"] }
[dev-dependencies]
anyhow = "1.0"

@ -50,7 +50,7 @@ serde_json = "1.0"
rust-criu = "0.4.0"
regex = "1.10.0"
thiserror = "1.0.49"
tracing = { version = "0.1.37", features = ["attributes"] }
tracing = { version = "0.1.39", features = ["attributes"] }
safe-path = "0.1.0"
[dev-dependencies]

@ -46,7 +46,7 @@ wasmer-wasix = { version = "0.9.0", optional = true }
wasmedge-sdk = { version = "0.12.2", optional = true }
wasmtime = {version = "10.0.2", optional = true }
wasmtime-wasi = {version = "10.0.2", optional = true }
tracing = { version = "0.1.37", features = ["attributes"]}
tracing = { version = "0.1.39", features = ["attributes"]}
tracing-subscriber = { version = "0.3.16", features = ["json", "env-filter"] }
tracing-journald = "0.3.0"

@ -24,7 +24,7 @@ uuid = "1.4"
which = "4.4.0"
tempfile = "3"
scopeguard = "1.2.0"
tracing = { version = "0.1.37", features = ["attributes"]}
tracing = { version = "0.1.39", features = ["attributes"]}
tracing-subscriber = { version = "0.3.16", features = ["json", "env-filter"] }
[dependencies.clap]