1
1
[workspace ]
2
- members = [" ." , " examples/remove-emphasis/mdbook-remove-emphasis" ]
2
+ members = [" ." , " examples/remove-emphasis/mdbook-remove-emphasis" , " guide" ]
3
+
4
+ [workspace .dependencies ]
5
+ anyhow = " 1.0.71"
6
+ clap = { version = " 4.3.12" , features = [" cargo" , " wrap_help" ] }
7
+ mdbook = { path = " ." }
8
+ pulldown-cmark = { version = " 0.12.2" , default-features = false , features = [
9
+ " html" ,
10
+ ] } # Do not update, part of the public api.
11
+ serde = { version = " 1.0.163" , features = [" derive" ] }
12
+ serde_json = " 1.0.96"
13
+ semver = " 1.0.17"
14
+
3
15
4
16
[package ]
5
17
name = " mdbook"
6
18
version = " 0.4.43"
7
19
authors = [
8
20
" Mathieu David <[email protected] >" ,
9
21
" Michael-F-Bryan <[email protected] >" ,
10
- " Matt Ickstadt <[email protected] >"
22
+ " Matt Ickstadt <[email protected] >" ,
11
23
]
12
24
documentation = " https://rust-lang.github.io/mdBook/index.html"
13
25
edition = " 2021"
@@ -20,23 +32,24 @@ description = "Creates a book from markdown files"
20
32
rust-version = " 1.74"
21
33
22
34
[dependencies ]
23
- anyhow = " 1.0.71 "
35
+ anyhow.workspace = true
24
36
chrono = { version = " 0.4.24" , default-features = false , features = [" clock" ] }
25
- clap = { version = " 4.3.12 " , features = [ " cargo " , " wrap_help " ] }
37
+ clap.workspace = true
26
38
clap_complete = " 4.3.2"
39
+ cargo-manifest = " 0.17.0"
27
40
once_cell = " 1.17.1"
28
41
env_logger = " 0.11.1"
29
42
handlebars = " 6.0"
30
43
log = " 0.4.17"
31
44
memchr = " 2.5.0"
32
45
opener = " 0.7.0"
33
- pulldown-cmark = { version = " 0.10.0 " , default-features = false , features = [ " html " ] } # Do not update, part of the public api.
46
+ pulldown-cmark.workspace = true
34
47
regex = " 1.8.1"
35
- serde = { version = " 1.0.163 " , features = [ " derive " ] }
36
- serde_json = " 1.0.96 "
48
+ serde.workspace = true
49
+ serde_json.workspace = true
37
50
shlex = " 1.3.0"
38
51
tempfile = " 3.4.0"
39
- toml = " 0.5.11" # Do not update, see https://github.com/rust-lang/mdBook/issues/2037
52
+ toml = " 0.5.11" # Do not update, see https://github.com/rust-lang/mdBook/issues/2037
40
53
topological-sort = " 0.2.2"
41
54
42
55
# Watch feature
@@ -59,7 +72,7 @@ ammonia = { version = "4.0.0", optional = true }
59
72
assert_cmd = " 2.0.11"
60
73
predicates = " 3.0.3"
61
74
select = " 0.6.0"
62
- semver = " 1.0.17 "
75
+ semver.workspace = true
63
76
pretty_assertions = " 1.3.0"
64
77
walkdir = " 2.3.3"
65
78
0 commit comments