Skip to content

Commit 4d229d7

Browse files
authored
Merge pull request #2086 from ehuss/sync-cargo.toml
Set minimum versions in Cargo.toml
2 parents 0992173 + d94c5f8 commit 4d229d7

File tree

1 file changed

+25
-25
lines changed

1 file changed

+25
-25
lines changed

Cargo.toml

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -17,46 +17,46 @@ description = "Creates a book from markdown files"
1717
rust-version = "1.65"
1818

1919
[dependencies]
20-
anyhow = "1.0.28"
21-
chrono = { version = "0.4", default-features = false, features = ["clock"] }
20+
anyhow = "1.0.71"
21+
chrono = { version = "0.4.24", default-features = false, features = ["clock"] }
2222
clap = { version = "4.2.7", features = ["cargo", "wrap_help"] }
2323
clap_complete = "4.2.3"
24-
once_cell = "1"
24+
once_cell = "1.17.1"
2525
env_logger = "0.10.0"
26-
handlebars = "4.0"
27-
log = "0.4"
28-
memchr = "2.0"
29-
opener = "0.5"
30-
pulldown-cmark = { version = "0.9.1", default-features = false }
31-
regex = "1.5.5"
32-
serde = { version = "1.0", features = ["derive"] }
33-
serde_json = "1.0"
34-
shlex = "1"
35-
tempfile = "3.0"
36-
toml = "0.5.1"
26+
handlebars = "4.3.7"
27+
log = "0.4.17"
28+
memchr = "2.5.0"
29+
opener = "0.5.2"
30+
pulldown-cmark = { version = "0.9.2", default-features = false }
31+
regex = "1.8.1"
32+
serde = { version = "1.0.163", features = ["derive"] }
33+
serde_json = "1.0.96"
34+
shlex = "1.1.0"
35+
tempfile = "3.4.0"
36+
toml = "0.5.11"
3737
topological-sort = "0.2.2"
3838

3939
# Watch feature
40-
notify = { version = "5.0.0", optional = true }
40+
notify = { version = "5.1.0", optional = true }
4141
notify-debouncer-mini = { version = "0.2.1", optional = true }
4242
ignore = { version = "0.4.20", optional = true }
4343

4444
# Serve feature
45-
futures-util = { version = "0.3.4", optional = true }
46-
tokio = { version = "1", features = ["macros", "rt-multi-thread"], optional = true }
47-
warp = { version = "0.3.2", default-features = false, features = ["websocket"], optional = true }
45+
futures-util = { version = "0.3.28", optional = true }
46+
tokio = { version = "1.28.1", features = ["macros", "rt-multi-thread"], optional = true }
47+
warp = { version = "0.3.5", default-features = false, features = ["websocket"], optional = true }
4848

4949
# Search feature
50-
elasticlunr-rs = { version = "3.0.0", optional = true }
51-
ammonia = { version = "3", optional = true }
50+
elasticlunr-rs = { version = "3.0.2", optional = true }
51+
ammonia = { version = "3.3.0", optional = true }
5252

5353
[dev-dependencies]
54-
assert_cmd = "2.0.7"
55-
predicates = "2"
54+
assert_cmd = "2.0.11"
55+
predicates = "2.1.5"
5656
select = "0.6.0"
57-
semver = "1.0"
58-
pretty_assertions = "1.2.1"
59-
walkdir = "2.0"
57+
semver = "1.0.17"
58+
pretty_assertions = "1.3.0"
59+
walkdir = "2.3.3"
6060

6161
[features]
6262
default = ["watch", "serve", "search"]

0 commit comments

Comments
 (0)