chore(deps): bump tracing-futures from 0.2.4 to 0.2.5 (#197)

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

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
This commit is contained in:
dependabot-preview[bot] 2021-02-17 11:49:54 +02:00 committed by GitHub
parent e82b09f521
commit e2ef22d0af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 30 deletions

36
Cargo.lock generated
View File

@ -642,7 +642,7 @@ dependencies = [
"futures-util",
"hex",
"once_cell",
"pin-project 1.0.5",
"pin-project",
"serde",
"serde_json",
"thiserror",
@ -741,7 +741,7 @@ dependencies = [
"futures-timer",
"futures-util",
"hex",
"pin-project 1.0.5",
"pin-project",
"reqwest",
"serde",
"serde_json",
@ -1110,7 +1110,7 @@ dependencies = [
"httparse",
"httpdate",
"itoa",
"pin-project 1.0.5",
"pin-project",
"socket2",
"tokio",
"tower-service",
@ -1508,33 +1508,13 @@ version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
[[package]]
name = "pin-project"
version = "0.4.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2ffbc8e94b38ea3d2d8ba92aea2983b503cd75d0888d75b86bb37970b5698e15"
dependencies = [
"pin-project-internal 0.4.27",
]
[[package]]
name = "pin-project"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96fa8ebb90271c4477f144354485b8068bd8f6b78b428b01ba892ca26caf0b63"
dependencies = [
"pin-project-internal 1.0.5",
]
[[package]]
name = "pin-project-internal"
version = "0.4.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "65ad2ae56b6abe3a1ee25f15ee605bacadb9a764edaba9c2bf4103800d4a1895"
dependencies = [
"proc-macro2",
"quote",
"syn",
"pin-project-internal",
]
[[package]]
@ -2268,7 +2248,7 @@ dependencies = [
"futures-util",
"log",
"native-tls",
"pin-project 1.0.5",
"pin-project",
"tokio",
"tokio-native-tls",
"tungstenite",
@ -2317,11 +2297,11 @@ dependencies = [
[[package]]
name = "tracing-futures"
version = "0.2.4"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab7bb6f14721aa00656086e9335d363c5c8747bae02ebe32ea2c7dece5689b4c"
checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
dependencies = [
"pin-project 0.4.27",
"pin-project",
"tracing",
]

View File

@ -24,7 +24,7 @@ serde = { version = "1.0.123", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.22", default-features = false }
futures-util = { version = "0.3.12", default-features = false }
tracing = { version = "0.1.23", default-features = false }
tracing-futures = { version = "0.2.4", default-features = false }
tracing-futures = { version = "0.2.5", default-features = false }
# for gas oracles
serde-aux = { version = "2.1.0", default-features = false }

View File

@ -34,7 +34,7 @@ pin-project = { version = "1.0.5", default-features = false }
# tracing
tracing = { version = "0.1.23", default-features = false }
tracing-futures = { version = "0.2.4", default-features = false }
tracing-futures = { version = "0.2.5", default-features = false }
# tokio
tokio = { version = "1.2", default-features = false, optional = true }