From fd5ddb424ee1b6461d367cbfbce0fa937a439967 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 3 Dec 2021 21:37:58 +0000 Subject: [PATCH] Bump mdbook from 0.4.12 to 0.4.14 in /blacksmith Bumps [mdbook](https://github.com/rust-lang/mdBook) from 0.4.12 to 0.4.14. - [Release notes](https://github.com/rust-lang/mdBook/releases) - [Changelog](https://github.com/rust-lang/mdBook/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/mdBook/compare/v0.4.12...v0.4.14) --- updated-dependencies: - dependency-name: mdbook dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- blacksmith/Cargo.lock | 41 +++++++++++++++++++++++++++++++++-------- blacksmith/Cargo.toml | 2 +- 2 files changed, 34 insertions(+), 9 deletions(-) diff --git a/blacksmith/Cargo.lock b/blacksmith/Cargo.lock index 06dc5a6a2..24d6355f6 100644 --- a/blacksmith/Cargo.lock +++ b/blacksmith/Cargo.lock @@ -89,6 +89,17 @@ dependencies = [ "byte-tools", ] +[[package]] +name = "bstr" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223" +dependencies = [ + "lazy_static", + "memchr", + "regex-automata", +] + [[package]] name = "bumpalo" version = "3.6.1" @@ -632,9 +643,9 @@ checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" [[package]] name = "mdbook" -version = "0.4.12" +version = "0.4.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0651782b4cc514c3f98c0acf9b5af1101a735bbe1ac6852bb1a90cb91bdf0ed4" +checksum = "f6e77253c46a90eb7e96b2807201dab941a4db5ea05eca5aaaf7027395f352b3" dependencies = [ "ammonia", "anyhow", @@ -646,7 +657,7 @@ dependencies = [ "lazy_static", "log", "memchr", - "open", + "opener", "pulldown-cmark", "regex", "serde", @@ -655,6 +666,7 @@ dependencies = [ "shlex", "tempfile", "toml", + "topological-sort", ] [[package]] @@ -776,11 +788,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c" [[package]] -name = "open" -version = "1.4.0" +name = "opener" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c283bf0114efea9e42f1a60edea9859e8c47528eae09d01df4b29c1e489cc48" +checksum = "4ea3ebcd72a54701f56345f16785a6d3ac2df7e986d273eb4395c0b01db17952" dependencies = [ + "bstr", "winapi", ] @@ -965,9 +978,9 @@ dependencies = [ [[package]] name = "pulldown-cmark" -version = "0.7.2" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca36dea94d187597e104a5c8e4b07576a8a45aa5db48a65e12940d3eb7461f55" +checksum = "ffade02495f22453cd593159ea2f59827aae7f53fa8323f756799b670881dcf8" dependencies = [ "bitflags", "getopts", @@ -1107,6 +1120,12 @@ dependencies = [ "regex-syntax", ] +[[package]] +name = "regex-automata" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" + [[package]] name = "regex-syntax" version = "0.6.25" @@ -1456,6 +1475,12 @@ dependencies = [ "serde", ] +[[package]] +name = "topological-sort" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa7c7f42dea4b1b99439786f5633aeb9c14c1b53f75e282803c2ec2ad545873c" + [[package]] name = "tower-service" version = "0.3.1" diff --git a/blacksmith/Cargo.toml b/blacksmith/Cargo.toml index c445c76eb..4ee6ecb05 100644 --- a/blacksmith/Cargo.toml +++ b/blacksmith/Cargo.toml @@ -21,6 +21,6 @@ version = "2.33.3" default-features = false [dependencies.mdbook] -version = "=0.4.12" +version = "=0.4.14" default-features = false features = ["search"]