11[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+
315
416[package ]
517name = " mdbook"
618version = " 0.4.43"
719authors = [
820 " Mathieu David <mathieudavid@mathieudavid.org>" ,
921 " Michael-F-Bryan <michaelfbryan@gmail.com>" ,
10- " Matt Ickstadt <mattico8@gmail.com>"
22+ " Matt Ickstadt <mattico8@gmail.com>" ,
1123]
1224documentation = " https://rust-lang.github.io/mdBook/index.html"
1325edition = " 2021"
@@ -20,23 +32,24 @@ description = "Creates a book from markdown files"
2032rust-version = " 1.74"
2133
2234[dependencies ]
23- anyhow = " 1.0.71 "
35+ anyhow.workspace = true
2436chrono = { version = " 0.4.24" , default-features = false , features = [" clock" ] }
25- clap = { version = " 4.3.12 " , features = [ " cargo " , " wrap_help " ] }
37+ clap.workspace = true
2638clap_complete = " 4.3.2"
39+ cargo-manifest = " 0.17.0"
2740once_cell = " 1.17.1"
2841env_logger = " 0.11.1"
2942handlebars = " 6.0"
3043log = " 0.4.17"
3144memchr = " 2.5.0"
3245opener = " 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
3447regex = " 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
3750shlex = " 1.3.0"
3851tempfile = " 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
4053topological-sort = " 0.2.2"
4154
4255# Watch feature
@@ -59,7 +72,7 @@ ammonia = { version = "4.0.0", optional = true }
5972assert_cmd = " 2.0.11"
6073predicates = " 3.0.3"
6174select = " 0.6.0"
62- semver = " 1.0.17 "
75+ semver.workspace = true
6376pretty_assertions = " 1.3.0"
6477walkdir = " 2.3.3"
6578
0 commit comments