Skip to content

Commit

Permalink
Bump some dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Folyd committed Sep 19, 2024
1 parent 3c950bc commit 056de37
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/cmd/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)?;

Expand Down

0 comments on commit 056de37

Please sign in to comment.