Skip to content

Commit 41ad897

Browse files
committed
add missing import
1 parent 13ba4aa commit 41ad897

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

Cargo.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

turbopack/crates/turbo-persistence/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ rustc-hash = { workspace = true }
2525
serde = { workspace = true }
2626
smallvec = { workspace = true}
2727
thread_local = { workspace = true }
28+
tracing = { workspace = true }
2829
twox-hash = { version = "2.0.1", features = ["xxhash64"] }
2930
zstd = { version = "0.13.2", features = ["zdict_builder"] }
3031

turbopack/crates/turbo-persistence/src/write_batch.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ use rayon::{
1717
};
1818
use smallvec::SmallVec;
1919
use thread_local::ThreadLocal;
20+
use tracing::Span;
2021

2122
use crate::{
2223
collector::Collector,

0 commit comments

Comments
 (0)