Skip to content

Commit 8cbd88c

Browse files
committed
Fix up imports
1 parent 45397dd commit 8cbd88c

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

crates/bevy_asset/src/io/embedded/embedded_watcher.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ use crate::io::{
55
};
66
use bevy_utils::tracing::warn;
77
use bevy_utils::{Duration, HashMap};
8+
use concurrent_queue::ConcurrentQueue;
89
use notify_debouncer_full::{notify::RecommendedWatcher, Debouncer, FileIdMap};
910
use parking_lot::RwLock;
1011
use std::{

crates/bevy_asset/src/io/file/file_watcher.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@ use notify_debouncer_full::{
1212
},
1313
DebounceEventResult, Debouncer, FileIdMap,
1414
};
15-
use std::path::{Path, PathBuf};
15+
use std::{
16+
path::{Path, PathBuf},
17+
sync::Arc,
18+
};
1619

1720
/// An [`AssetWatcher`] that watches the filesystem for changes to asset files in a given root folder and emits [`AssetSourceEvent`]
1821
/// for each relevant change. This uses [`notify_debouncer_full`] to retrieve "debounced" filesystem events.

0 commit comments

Comments
 (0)