Remove the obsolent tracing-future dependency (#517)

This commit is contained in:
nickelc
2021-02-09 14:50:11 +01:00
committed by GitHub
parent 2b05c13298
commit 9049e468c8
3 changed files with 3 additions and 4 deletions

View File

@@ -47,8 +47,7 @@ tokio-util = { version = "0.6", features = ["codec"] }
tokio = { version = "1", features = ["io-util"] } tokio = { version = "1", features = ["io-util"] }
bytes = "1" bytes = "1"
http = "0.2" http = "0.2"
tracing = { version = "0.1.13", default-features = false, features = ["std"] } tracing = { version = "0.1.21", default-features = false, features = ["std"] }
tracing-futures = { version = "0.2", default-features = false, features = ["std-future"]}
fnv = "1.0.5" fnv = "1.0.5"
slab = "0.4.2" slab = "0.4.2"
indexmap = "1.0" indexmap = "1.0"

View File

@@ -149,7 +149,7 @@ use std::task::{Context, Poll};
use std::time::Duration; use std::time::Duration;
use std::usize; use std::usize;
use tokio::io::{AsyncRead, AsyncWrite, AsyncWriteExt}; use tokio::io::{AsyncRead, AsyncWrite, AsyncWriteExt};
use tracing_futures::Instrument; use tracing::Instrument;
/// Initializes new HTTP/2.0 streams on a connection by sending a request. /// Initializes new HTTP/2.0 streams on a connection by sending a request.
/// ///

View File

@@ -128,7 +128,7 @@ use std::task::{Context, Poll};
use std::time::Duration; use std::time::Duration;
use std::{convert, fmt, io, mem}; use std::{convert, fmt, io, mem};
use tokio::io::{AsyncRead, AsyncWrite, ReadBuf}; use tokio::io::{AsyncRead, AsyncWrite, ReadBuf};
use tracing_futures::{Instrument, Instrumented}; use tracing::instrument::{Instrument, Instrumented};
/// In progress HTTP/2.0 connection handshake future. /// In progress HTTP/2.0 connection handshake future.
/// ///