Skip to content

Commit bfd11db

Browse files
svix-jplattedrmingdrmer
authored andcommitted
deps: Remove tracing-futures
The same functionality is available in the tracing crate.
1 parent bb1e964 commit bfd11db

4 files changed

Lines changed: 2 additions & 4 deletions

File tree

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ tokio = { version = "1.39", default-features = false, features = [
4949
] }
5050
tracing = { version = "0.1.40" }
5151
tracing-appender = { version = "0.2.0" }
52-
tracing-futures = { version = "0.2.4" }
5352
tracing-subscriber = { version = "0.3.3", features = ["env-filter"] }
5453
validit = { version = "0.2.5" }
5554

openraft/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ serde_json = { workspace = true, optional = true }
3333
tabled = { workspace = true, optional = true }
3434
thiserror = { workspace = true }
3535
tracing = { workspace = true }
36-
tracing-futures = { workspace = true }
3736
validit = { workspace = true }
3837

3938

openraft/src/core/sm/worker.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use futures_util::TryStreamExt;
2-
use tracing_futures::Instrument;
2+
use tracing::Instrument;
33

44
use crate::RaftLogReader;
55
use crate::RaftSnapshotBuilder;

openraft/src/replication/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ pub(crate) use replication_session_id::ReplicationSessionId;
2727
pub(crate) use response::Progress;
2828
use response::ReplicationResult;
2929
use stream_state::StreamState;
30-
use tracing_futures::Instrument;
30+
use tracing::Instrument;
3131

3232
use crate::RaftNetworkFactory;
3333
use crate::RaftTypeConfig;

0 commit comments

Comments
 (0)