Skip to content

Commit 7d59b8e

Browse files
committed
moving dev_2 over to composition-integration (#2130)
Co-authored-by: Brian George <[email protected]>
1 parent ebb3c73 commit 7d59b8e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,6 @@ tempfile = { workspace = true }
213213
timber = { workspace = true }
214214
termimad = { workspace = true }
215215
thiserror = { workspace = true }
216-
tap = { workspace = true }
217216
tokio = { workspace = true, features = ["rt", "rt-multi-thread", "macros", "process", "sync"] }
218217
tokio-stream = { workspace = true }
219218
toml = { workspace = true }

src/composition/watchers/watcher/file.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
use camino::Utf8PathBuf;
2+
use derive_getters::Getters;
23
use futures::{stream::BoxStream, StreamExt};
34
use tap::TapFallible;
45
use tokio::sync::mpsc::unbounded_channel;
56

67
use rover_std::Fs;
78
use tokio_stream::wrappers::UnboundedReceiverStream;
89

9-
#[derive(Clone)]
10+
#[derive(Clone, Getters)]
1011
pub struct FileWatcher {
11-
pub path: Utf8PathBuf,
12+
path: Utf8PathBuf,
1213
}
1314

1415
impl FileWatcher {

0 commit comments

Comments
 (0)