chore(deps): bump tracing from 0.1.35 to 0.1.36 (#1543)

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

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

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] 2022-07-31 21:14:35 -07:00 committed by GitHub
parent 2f2edac3b0
commit aa213a58ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 13 additions and 13 deletions

16
Cargo.lock generated
View File

@ -2703,9 +2703,9 @@ dependencies = [
[[package]]
name = "pin-project-lite"
version = "0.2.8"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e280fbe77cc62c91527259e9442153f4688736748d24660126286329742b4c6c"
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
[[package]]
name = "pin-utils"
@ -4024,9 +4024,9 @@ checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
[[package]]
name = "tracing"
version = "0.1.35"
version = "0.1.36"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a400e31aa60b9d44a52a8ee0343b5b18566b03a8321e0d321f695cf56e940160"
checksum = "2fce9567bd60a67d08a16488756721ba392f24f29006402881e43b19aac64307"
dependencies = [
"cfg-if 1.0.0",
"pin-project-lite",
@ -4036,9 +4036,9 @@ dependencies = [
[[package]]
name = "tracing-attributes"
version = "0.1.20"
version = "0.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e65ce065b4b5c53e73bb28912318cb8c9e9ad3921f1d669eb0e68b4c8143a2b"
checksum = "11c75893af559bc8e10716548bdef5cb2b983f8e637db9d0e15126b61b484ee2"
dependencies = [
"proc-macro2",
"quote",
@ -4047,9 +4047,9 @@ dependencies = [
[[package]]
name = "tracing-core"
version = "0.1.28"
version = "0.1.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b7358be39f2f274f322d2aaed611acc57f382e8eb1e5b48cb9ae30933495ce7"
checksum = "5aeea4303076558a00714b823f9ad67d58a3bbda1df83d8827d21193156e22f7"
dependencies = [
"once_cell",
"valuable",

View File

@ -20,7 +20,7 @@ serde = { version = "1.0.124", default-features = false, features = ["derive"] }
serde_json = { version = "1.0.64", default-features = false }
serde-aux = { version = "3.1.0", default-features = false }
thiserror = "1.0"
tracing = "0.1.35"
tracing = "0.1.36"
semver = "1.0.12"
[target.'cfg(target_arch = "wasm32")'.dependencies]

View File

@ -25,7 +25,7 @@ serde = { version = "1.0.124", default-features = false, features = ["derive"] }
thiserror = { version = "1.0", default-features = false }
futures-util = { version = "^0.3" }
futures-locks = { version = "0.7" }
tracing = { version = "0.1.35", default-features = false }
tracing = { version = "0.1.36", default-features = false }
tracing-futures = { version = "0.2.5", default-features = false }
# for gas oracles

View File

@ -35,7 +35,7 @@ futures-channel = { version = "0.3.16", default-features = false, optional = tru
pin-project = { version = "1.0.11", default-features = false }
# tracing
tracing = { version = "0.1.35", default-features = false }
tracing = { version = "0.1.36", default-features = false }
tracing-futures = { version = "0.2.5", default-features = false, features = ["std-future"] }
bytes = { version = "1.2.0", default-features = false, optional = true }

View File

@ -33,7 +33,7 @@ trezor-client = { version = "0.0.6", optional = true, default-features = false,
# aws
rusoto_core = { version = "0.48.0", optional = true }
rusoto_kms = { version = "0.48.0", optional = true }
tracing = { version = "0.1.35", optional = true }
tracing = { version = "0.1.36", optional = true }
spki = { version = "0.6.0", optional = true }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]

View File

@ -28,7 +28,7 @@ thiserror = "1.0"
hex = "0.4.3"
colored = "2.0.0"
glob = "0.3.0"
tracing = "0.1.35"
tracing = "0.1.36"
num_cpus = "1.13.1"
tiny-keccak = { version = "2.0.2", default-features = false }
tempfile = { version = "3.3.0", optional = true }