Skip to content

Commit 4742735

Browse files
committed
Make ignore a mandatory dependency
1 parent 2385a9b commit 4742735

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,12 @@ anyhow = "1.0.71"
2121
chrono = { version = "0.4.24", default-features = false, features = ["clock"] }
2222
clap = { version = "4.3.12", features = ["cargo", "wrap_help"] }
2323
clap_complete = "4.3.2"
24-
once_cell = "1.17.1"
2524
env_logger = "0.11.1"
2625
handlebars = "5.0"
26+
ignore = "0.4.20"
2727
log = "0.4.17"
2828
memchr = "2.5.0"
29+
once_cell = "1.17.1"
2930
opener = "0.7.0"
3031
pulldown-cmark = { version = "0.10.0", default-features = false, features = ["html"] } # Do not update, part of the public api.
3132
regex = "1.8.1"
@@ -39,7 +40,6 @@ topological-sort = "0.2.2"
3940
# Watch feature
4041
notify = { version = "6.1.1", optional = true }
4142
notify-debouncer-mini = { version = "0.4.1", optional = true }
42-
ignore = { version = "0.4.20", optional = true }
4343
pathdiff = { version = "0.2.1", optional = true }
4444
walkdir = { version = "2.3.3", optional = true }
4545

@@ -62,7 +62,7 @@ walkdir = "2.3.3"
6262

6363
[features]
6464
default = ["watch", "serve", "search"]
65-
watch = ["dep:notify", "dep:notify-debouncer-mini", "dep:ignore", "dep:pathdiff", "dep:walkdir"]
65+
watch = ["dep:notify", "dep:notify-debouncer-mini", "dep:pathdiff", "dep:walkdir"]
6666
serve = ["dep:futures-util", "dep:tokio", "dep:warp"]
6767
search = ["dep:elasticlunr-rs", "dep:ammonia"]
6868

0 commit comments

Comments
 (0)