diff --git a/Cargo.toml b/Cargo.toml index dca473d..83ecf3e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,9 +37,9 @@ hyper-util = { version = "0.1.8", features = [ ] } markup5ever_rcdom = "0.2" minijinja = { version = "2.3" } -notify-debouncer-mini = { version = "0.3", default-features = false } +notify-debouncer-mini = { version = "0.4", default-features = false } once_cell = "1" -opener = "0.6" +opener = "0.7" parking_lot = "0.12" promptly = "0.3" pulldown-cmark = "0.9" @@ -51,7 +51,7 @@ syntect = { version = "5", default-features = false, features = [ ] } time = { version = "0.3", features = ["serde", "serde-well-known"] } tokio = { version = "1.26", features = ["rt-multi-thread", "signal", "macros"] } -toml = "0.7" +toml = "0.8" tower = { version = "0.5", features = ["make", "util"] } tower-http = { version = "0.5", features = ["fs"] } walkdir = "2" diff --git a/src/cmd/build.rs b/src/cmd/build.rs index 66fda0f..9217514 100644 --- a/src/cmd/build.rs +++ b/src/cmd/build.rs @@ -38,7 +38,7 @@ where println!("Watching..."); let (tx, rx) = mpsc::channel(); - let mut debouncer = new_debouncer(Duration::from_millis(500), None, tx)?; + let mut debouncer = new_debouncer(Duration::from_millis(500), tx)?; let watcher = debouncer.watcher(); watcher.watch(&source, RecursiveMode::Recursive)?;