From 847a10e0c2208383c719e3f9bd736d1885438404 Mon Sep 17 00:00:00 2001 From: Max Heller Date: Thu, 21 Mar 2024 20:14:04 -0400 Subject: [PATCH] doc: improve rendering of example books (#79) Decrease margins, set `hosted-html`, and configure fallback fonts for rendered example books --- .github/workflows/release.yml | 2 +- Cargo.toml | 2 + README.md | 2 +- scripts/cargo-dist-render-books | 4 +- scripts/install-ci-deps | 8 +- src/lib.rs | 179 ++++---- src/preprocess.rs | 9 +- .../mdbook_pandoc__tests__cargo_book.snap | 315 +++++++------ .../mdbook_pandoc__tests__nomicon.snap | 113 +++-- .../mdbook_pandoc__tests__rust_book.snap | 96 ++-- ...mdbook_pandoc__tests__rust_by_example.snap | 10 +- ...ook_pandoc__tests__rust_edition_guide.snap | 172 ++++---- .../mdbook_pandoc__tests__rust_embedded.snap | 12 +- .../mdbook_pandoc__tests__rust_reference.snap | 417 ++++++++---------- ...mdbook_pandoc__tests__rustc_dev_guide.snap | 27 +- 15 files changed, 638 insertions(+), 730 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 26473b1..9003d96 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -151,7 +151,7 @@ jobs: needs: - plan - build-local-artifacts - runs-on: "ubuntu-20.04" + runs-on: ubuntu-latest env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} BUILD_MANIFEST_NAME: target/distrib/global-dist-manifest.json diff --git a/Cargo.toml b/Cargo.toml index ab3872f..abcf198 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -64,6 +64,8 @@ installers = ["shell", "powershell"] targets = ["x86_64-unknown-linux-gnu", "aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-musl", "x86_64-pc-windows-msvc"] # Publish jobs to run in CI pr-run-mode = "plan" +# TODO: When cargo-dist allows specifying custom runners for the global artifacts job, remove this +allow-dirty = ["ci"] [workspace.metadata.dist.dependencies.apt] pandoc = { stage = ["run"] } diff --git a/README.md b/README.md index ed2bdbe..c173353 100644 --- a/README.md +++ b/README.md @@ -125,7 +125,7 @@ variable-name = "value" #### Rendered books The following table links to sample books rendered with `mdbook-pandoc`. -PDFs are rendered with LaTeX ([xelatex](https://en.wikipedia.org/wiki/XeTeX)). +PDFs are rendered with LaTeX ([LuaTeX](https://en.wikipedia.org/wiki/LuaTeX)). | Book | Rendered | | ---- | -------- | diff --git a/scripts/cargo-dist-render-books b/scripts/cargo-dist-render-books index 20c3f62..4390c5f 100755 --- a/scripts/cargo-dist-render-books +++ b/scripts/cargo-dist-render-books @@ -2,9 +2,7 @@ set -e -# Use xelatex when building books since texlive-luatex is missing lua-ul.sty on Ubuntu 20.04, -# which cargo-dist uses for its runner -PDF_ENGINE=xelatex cargo nextest run --no-fail-fast || true +cargo nextest run cp books/cargo/src/doc/book/pdf/book.pdf rendered-cargo-book.pdf cp books/mdBook/guide/book/pdf/book.pdf rendered-mdBook-guide.pdf diff --git a/scripts/install-ci-deps b/scripts/install-ci-deps index 95349e6..35d2c08 100755 --- a/scripts/install-ci-deps +++ b/scripts/install-ci-deps @@ -9,15 +9,15 @@ sudo apt-get update curl -LsSf https://get.nexte.st/0.9/linux | tar zxf - -C ${CARGO_HOME:-~/.cargo}/bin # Pandoc -curl -LsSf https://github.com/jgm/pandoc/releases/download/3.1.11/pandoc-3.1.11-linux-amd64.tar.gz | tar zxf - -echo "$PWD/pandoc-3.1.11/bin" >> $GITHUB_PATH -export PATH="$PWD/pandoc-3.1.11/bin:$PATH" +curl -LsSf https://github.com/jgm/pandoc/releases/download/3.1.12.3/pandoc-3.1.12.3-linux-amd64.tar.gz | tar zxf - +echo "$PWD/pandoc-3.1.12.3/bin" >> $GITHUB_PATH +export PATH="$PWD/pandoc-3.1.12.3/bin:$PATH" # rsvg-convert (SVG support) sudo apt-get install -y librsvg2-bin # TeX Live and fonts -sudo apt-get install -y texlive texlive-luatex texlive-xetex texlive-fonts-extra fonts-font-awesome fonts-noto +sudo apt-get install -y texlive texlive-luatex texlive-lang-cjk texlive-fonts-extra fonts-font-awesome fonts-noto fonts-noto-cjk fonts-noto-color-emoji # mdBook preprocessors needed by example books cargo install mdbook-i18n-helpers --locked diff --git a/src/lib.rs b/src/lib.rs index d70133a..c4ddcb4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -189,6 +189,7 @@ mod tests { use once_cell::sync::Lazy; use regex::Regex; use tempfile::{tempfile, TempDir}; + use toml::toml; use super::*; @@ -479,93 +480,59 @@ mod tests { } impl Config { - fn default() -> Self { - Self { - keep_preprocessed: false, - profiles: Default::default(), - hosted_html: None, - code: CodeConfig { - show_hidden_lines: false, - }, - } - } - fn latex() -> Self { - Self { - keep_preprocessed: true, - profiles: HashMap::from_iter([("latex".into(), pandoc::Profile::latex())]), - ..Self::default() - } - } - - fn pdf() -> Self { - Config { - profiles: HashMap::from_iter([("pdf".into(), pandoc::Profile::pdf())]), - ..Self::default() - } - } - - fn markdown() -> Self { - Self { - profiles: HashMap::from_iter([("markdown".into(), pandoc::Profile::markdown())]), - ..Self::default() - } - } - } + toml! { + [profile.latex] + output-file = "output.tex" + standalone = false - impl pandoc::Profile { - fn latex() -> Self { - Self { - columns: 72, - file_scope: true, - number_sections: true, - output_file: PathBuf::from("output.tex"), - pdf_engine: None, - standalone: false, - to: Some("latex".into()), - table_of_contents: true, - variables: FromIterator::from_iter([("documentclass".into(), "report".into())]), - rest: Default::default(), + [profile.latex.variables] + documentclass = "report" } + .try_into() + .unwrap() } fn pdf() -> Self { - Self { - columns: 72, - file_scope: true, - number_sections: true, - output_file: "book.pdf".into(), - pdf_engine: Some( - env::var_os("PDF_ENGINE") - .map(Into::into) - .unwrap_or("lualatex".into()), - ), - standalone: true, - to: Some("latex".into()), - table_of_contents: true, - variables: FromIterator::from_iter([ - ("documentclass".into(), "report".into()), - ("mainfont".into(), "Noto Serif".into()), - ("sansfont".into(), "Noto Sans".into()), - ("monofont".into(), "Noto Sans Mono".into()), - ]), - rest: Default::default(), + toml! { + keep-preprocessed = false + + [profile.pdf] + output-file = "book.pdf" + to = "latex" + pdf-engine = "lualatex" + + [profile.pdf.variables] + documentclass = "report" + mainfont = "Noto Serif" + sansfont = "Noto Sans" + monofont = "Noto Sans Mono" + mainfontfallback = [ + "NotoColorEmoji:mode=harf", + "NotoSansMath:", + "NotoSerifCJKSC:", + ] + monofontfallback = [ + "NotoColorEmoji:mode=harf", + "NotoSansMath:", + "NotoSansMonoCJKSC:", + ] + geometry = ["margin=1.25in"] } + .try_into() + .unwrap() } fn markdown() -> Self { - Self { - columns: 72, - file_scope: true, - number_sections: true, - output_file: PathBuf::from("book.md"), - pdf_engine: None, - standalone: false, - to: Some("markdown".into()), - table_of_contents: true, - variables: Default::default(), - rest: Default::default(), + toml! { + keep-preprocessed = false + + [profile.markdown] + output-file = "book.md" + standalone = false } + .try_into() + .unwrap() } } @@ -587,6 +554,26 @@ mod tests { "###); } + #[test] + fn broken_links() { + let book = MDBook::init() + .chapter(Chapter::new( + "Getting Started", + "[broken link](foobarbaz)", + "getting-started.md", + )) + .build(); + insta::assert_snapshot!(book, @r###" + ├─ log output + │ INFO mdbook::book: Running the pandoc backend + │ WARN mdbook_pandoc::preprocess: Unable to normalize link 'foobarbaz' in chapter 'Getting Started': Unable to canonicalize path: $ROOT/src/foobarbaz: No such file or directory (os error 2) + │ WARN mdbook_pandoc: Unable to resolve one or more relative links within the book, consider setting the `hosted-html` option in `[output.pandoc]` + │ INFO mdbook_pandoc::pandoc::renderer: Wrote output to book/markdown/book.md + ├─ markdown/book.md + │ [broken link](foobarbaz) + "###); + } + #[test] fn strikethrough() { let book = MDBook::init() @@ -1267,7 +1254,10 @@ include-in-header = ["file-in-root"] #[test] fn mdbook_guide() { let logs = MDBook::load(BOOKS.join("mdBook/guide")) - .config(Config::pdf()) + .config(Config { + hosted_html: Some("https://rust-lang.github.io/mdBook/".into()), + ..Config::pdf() + }) .build() .logs; insta::assert_snapshot!(logs); @@ -1290,7 +1280,10 @@ include-in-header = ["file-in-root"] #[test] fn rust_book() { let logs = MDBook::load(BOOKS.join("rust-book")) - .config(Config::pdf()) + .config(Config { + hosted_html: Some("https://doc.rust-lang.org/book/".into()), + ..Config::pdf() + }) .build() .logs; insta::assert_snapshot!(logs); @@ -1299,7 +1292,10 @@ include-in-header = ["file-in-root"] #[test] fn nomicon() { let logs = MDBook::load(BOOKS.join("nomicon")) - .config(Config::pdf()) + .config(Config { + hosted_html: Some("https://doc.rust-lang.org/nomicon/".into()), + ..Config::pdf() + }) .build() .logs; insta::assert_snapshot!(logs); @@ -1308,7 +1304,10 @@ include-in-header = ["file-in-root"] #[test] fn rust_by_example() { let logs = MDBook::load(BOOKS.join("rust-by-example")) - .config(Config::pdf()) + .config(Config { + hosted_html: Some("https://doc.rust-lang.org/rust-by-example/".into()), + ..Config::pdf() + }) .build() .logs; insta::assert_snapshot!(logs); @@ -1317,7 +1316,10 @@ include-in-header = ["file-in-root"] #[test] fn rust_edition_guide() { let logs = MDBook::load(BOOKS.join("rust-edition-guide")) - .config(Config::pdf()) + .config(Config { + hosted_html: Some("https://doc.rust-lang.org/edition-guide/".into()), + ..Config::pdf() + }) .build() .logs; insta::assert_snapshot!(logs); @@ -1326,7 +1328,10 @@ include-in-header = ["file-in-root"] #[test] fn rust_embedded() { let logs = MDBook::load(BOOKS.join("rust-embedded")) - .config(Config::pdf()) + .config(Config { + hosted_html: Some("https://docs.rust-embedded.org/book/".into()), + ..Config::pdf() + }) .build() .logs; insta::assert_snapshot!(logs); @@ -1335,7 +1340,10 @@ include-in-header = ["file-in-root"] #[test] fn rust_reference() { let logs = MDBook::load(BOOKS.join("rust-reference")) - .config(Config::pdf()) + .config(Config { + hosted_html: Some("https://doc.rust-lang.org/reference/".into()), + ..Config::pdf() + }) .build() .logs; insta::assert_snapshot!(logs); @@ -1344,7 +1352,10 @@ include-in-header = ["file-in-root"] #[test] fn rustc_dev_guide() { let logs = MDBook::load(BOOKS.join("rustc-dev-guide")) - .config(Config::pdf()) + .config(Config { + hosted_html: Some("https://rustc-dev-guide.rust-lang.org/".into()), + ..Config::pdf() + }) .build() .logs; insta::assert_snapshot!(logs); diff --git a/src/preprocess.rs b/src/preprocess.rs index da68663..110c39e 100644 --- a/src/preprocess.rs +++ b/src/preprocess.rs @@ -13,6 +13,7 @@ use std::{ use aho_corasick::AhoCorasick; use anyhow::{anyhow, Context as _}; +use log::log; use mdbook::{ book::{BookItems, Chapter}, BookItem, @@ -293,7 +294,13 @@ impl<'book> Preprocessor<'book> { hosted.push("/"); hosted.push(&path); let hosted = os_to_utf8(hosted)?; - log::debug!( + log!( + // In tests, log at a higher level to detect link breakage + if cfg!(test) { + log::Level::Info + } else { + log::Level::Debug + }, "Unable to resolve relative path '{}' in chapter '{}', \ linking to hosted HTML book at '{hosted}'", link_path.display(), diff --git a/src/snapshots/mdbook_pandoc__tests__cargo_book.snap b/src/snapshots/mdbook_pandoc__tests__cargo_book.snap index 57a1845..d0bee52 100644 --- a/src/snapshots/mdbook_pandoc__tests__cargo_book.snap +++ b/src/snapshots/mdbook_pandoc__tests__cargo_book.snap @@ -5,167 +5,167 @@ expression: logs DEBUG mdbook::book: Running the index preprocessor. DEBUG mdbook::book: Running the links preprocessor. INFO mdbook::book: Running the pandoc backend -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../book/ch07-00-managing-growing-projects-with-packages-crates-and-modules.html' in chapter 'guide/project-layout.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/guide/../../book/ch07-00-managing-growing-projects-with-packages-crates-and-modules.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustdoc/write-documentation/documentation-tests.html' in chapter 'guide/tests.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/guide/../../rustdoc/write-documentation/documentation-tests.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../book/ch11-00-testing.html' in chapter 'guide/tests.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/guide/../../book/ch11-00-testing.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.html' in chapter 'reference/specifying-dependencies.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/primitive.char.html' in chapter 'reference/manifest.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/primitive.char.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../edition-guide/index.html' in chapter 'reference/manifest.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../edition-guide/index.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/lints/levels.html' in chapter 'reference/manifest.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/lints/levels.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/testing.html' in chapter 'reference/cargo-targets.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/testing.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/tests/index.html' in chapter 'reference/cargo-targets.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/tests/index.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/testing.html' in chapter 'reference/cargo-targets.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/testing.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustdoc/documentation-tests.html' in chapter 'reference/cargo-targets.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustdoc/documentation-tests.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/macro.env.html' in chapter 'reference/cargo-targets.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/macro.env.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../unstable-book/library-features/test.html' in chapter 'reference/cargo-targets.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../unstable-book/library-features/test.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../book/appendix-07-nightly-rust.html' in chapter 'reference/cargo-targets.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../book/appendix-07-nightly-rust.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/testing.html' in chapter 'reference/cargo-targets.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/testing.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustdoc/documentation-tests.html' in chapter 'reference/cargo-targets.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustdoc/documentation-tests.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../book/ch19-06-macros.html' in chapter 'reference/cargo-targets.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../book/ch19-06-macros.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/procedural-macros.html' in chapter 'reference/cargo-targets.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/procedural-macros.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/command-line-arguments.html' in chapter 'reference/cargo-targets.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/command-line-arguments.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/testing.html' in chapter 'reference/cargo-targets.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/testing.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.html' in chapter 'reference/cargo-targets.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../edition-guide/index.html' in chapter 'reference/cargo-targets.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../edition-guide/index.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/linkage.html' in chapter 'reference/cargo-targets.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/linkage.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/linkage.html' in chapter 'reference/cargo-targets.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/linkage.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.md' in chapter 'reference/features.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.md' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.md' in chapter 'reference/features.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.md' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/command-line-arguments.md' in chapter 'reference/features.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/command-line-arguments.md' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.md' in chapter 'reference/features.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.md' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/macro.cfg.html' in chapter 'reference/features.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/macro.cfg.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/primitive.char.html' in chapter 'reference/features.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/primitive.char.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/names/preludes.html' in chapter 'reference/features.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/names/preludes.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustdoc/how-to-write-documentation.html' in chapter 'reference/features.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustdoc/how-to-write-documentation.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../unstable-book/language-features/doc-cfg.html' in chapter 'reference/features.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../unstable-book/language-features/doc-cfg.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/names/preludes.html' in chapter 'reference/features-examples.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/names/preludes.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/prelude/index.html' in chapter 'reference/features-examples.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/prelude/index.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../book/appendix-07-nightly-rust.html' in chapter 'reference/features-examples.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../book/appendix-07-nightly-rust.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/marker/trait.Unsize.html' in chapter 'reference/features-examples.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/marker/trait.Unsize.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../unstable-book/index.html' in chapter 'reference/features-examples.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../unstable-book/index.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/profile-guided-optimization.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/profile-guided-optimization.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../book/appendix-07-nightly-rust.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../book/appendix-07-nightly-rust.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.md' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.md' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/macro.debug_assert.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/macro.debug_assert.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/expressions/operator-expr.md' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/expressions/operator-expr.md' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/linker-plugin-lto.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/linker-plugin-lto.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.html' in chapter 'reference/config.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.md' in chapter 'reference/config.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.md' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.html' in chapter 'reference/config.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.html' in chapter 'reference/config.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.html' in chapter 'reference/config.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/macro.env.html' in chapter 'reference/environment-variables.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/macro.env.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.html' in chapter 'reference/environment-variables.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.html' in chapter 'reference/environment-variables.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.html' in chapter 'reference/environment-variables.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.html' in chapter 'reference/environment-variables.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.html' in chapter 'reference/environment-variables.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.html' in chapter 'reference/environment-variables.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.html' in chapter 'reference/environment-variables.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.html' in chapter 'reference/environment-variables.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.html' in chapter 'reference/environment-variables.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.html' in chapter 'reference/environment-variables.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.html' in chapter 'reference/environment-variables.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.md' in chapter 'reference/build-scripts.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.md' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.md' in chapter 'reference/build-scripts.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.md' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.md' in chapter 'reference/build-scripts.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.md' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/command-line-arguments.md' in chapter 'reference/build-scripts.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/command-line-arguments.md' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../nomicon/ffi.md' in chapter 'reference/build-scripts.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../nomicon/ffi.md' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/command-line-arguments.md' in chapter 'reference/build-scripts.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/command-line-arguments.md' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.md' in chapter 'reference/build-scripts.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.md' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.md' in chapter 'reference/build-scripts.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.md' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.md' in chapter 'reference/build-scripts.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.md' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/command-line-arguments.md' in chapter 'reference/build-scripts.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/command-line-arguments.md' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/command-line-arguments.md' in chapter 'reference/build-scripts.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/command-line-arguments.md' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/command-line-arguments.md' in chapter 'reference/build-scripts.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/command-line-arguments.md' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.md' in chapter 'reference/build-scripts.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.md' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/macro.env.html' in chapter 'reference/build-scripts.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/macro.env.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.md' in chapter 'reference/build-scripts.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.md' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/macro.include.html' in chapter 'reference/build-script-examples.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/macro.include.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/macro.concat.html' in chapter 'reference/build-script-examples.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/macro.concat.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/macro.env.html' in chapter 'reference/build-script-examples.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/macro.env.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.md' in chapter 'reference/build-script-examples.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.md' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/macro.cfg.html' in chapter 'reference/build-script-examples.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/macro.cfg.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/json.md' in chapter 'reference/external-tools.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/json.md' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/primitive.char.html' in chapter 'reference/registry-index.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/primitive.char.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../book/ch07-00-managing-growing-projects-with-packages-crates-and-modules.html' in chapter 'guide/project-layout.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/guide/../../book/ch07-00-managing-growing-projects-with-packages-crates-and-modules.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustdoc/write-documentation/documentation-tests.html' in chapter 'guide/tests.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/guide/../../rustdoc/write-documentation/documentation-tests.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../book/ch11-00-testing.html' in chapter 'guide/tests.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/guide/../../book/ch11-00-testing.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.html' in chapter 'reference/specifying-dependencies.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/primitive.char.html' in chapter 'reference/manifest.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/primitive.char.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../edition-guide/index.html' in chapter 'reference/manifest.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../edition-guide/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/lints/levels.html' in chapter 'reference/manifest.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/lints/levels.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/testing.html' in chapter 'reference/cargo-targets.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/testing.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/tests/index.html' in chapter 'reference/cargo-targets.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/tests/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/testing.html' in chapter 'reference/cargo-targets.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/testing.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustdoc/documentation-tests.html' in chapter 'reference/cargo-targets.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustdoc/documentation-tests.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/macro.env.html' in chapter 'reference/cargo-targets.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/macro.env.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../unstable-book/library-features/test.html' in chapter 'reference/cargo-targets.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../unstable-book/library-features/test.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../book/appendix-07-nightly-rust.html' in chapter 'reference/cargo-targets.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../book/appendix-07-nightly-rust.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/testing.html' in chapter 'reference/cargo-targets.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/testing.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustdoc/documentation-tests.html' in chapter 'reference/cargo-targets.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustdoc/documentation-tests.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../book/ch19-06-macros.html' in chapter 'reference/cargo-targets.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../book/ch19-06-macros.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/procedural-macros.html' in chapter 'reference/cargo-targets.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/procedural-macros.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/command-line-arguments.html' in chapter 'reference/cargo-targets.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/command-line-arguments.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/testing.html' in chapter 'reference/cargo-targets.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/testing.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.html' in chapter 'reference/cargo-targets.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../edition-guide/index.html' in chapter 'reference/cargo-targets.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../edition-guide/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/linkage.html' in chapter 'reference/cargo-targets.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/linkage.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/linkage.html' in chapter 'reference/cargo-targets.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/linkage.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.md' in chapter 'reference/features.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.md' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.md' in chapter 'reference/features.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.md' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/command-line-arguments.md' in chapter 'reference/features.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/command-line-arguments.md' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.md' in chapter 'reference/features.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.md' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/macro.cfg.html' in chapter 'reference/features.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/macro.cfg.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/primitive.char.html' in chapter 'reference/features.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/primitive.char.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/names/preludes.html' in chapter 'reference/features.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/names/preludes.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustdoc/how-to-write-documentation.html' in chapter 'reference/features.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustdoc/how-to-write-documentation.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../unstable-book/language-features/doc-cfg.html' in chapter 'reference/features.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../unstable-book/language-features/doc-cfg.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/names/preludes.html' in chapter 'reference/features-examples.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/names/preludes.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/prelude/index.html' in chapter 'reference/features-examples.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/prelude/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../book/appendix-07-nightly-rust.html' in chapter 'reference/features-examples.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../book/appendix-07-nightly-rust.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/marker/trait.Unsize.html' in chapter 'reference/features-examples.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/marker/trait.Unsize.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../unstable-book/index.html' in chapter 'reference/features-examples.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../unstable-book/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/profile-guided-optimization.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/profile-guided-optimization.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../book/appendix-07-nightly-rust.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../book/appendix-07-nightly-rust.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.md' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.md' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/macro.debug_assert.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/macro.debug_assert.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/expressions/operator-expr.md' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/expressions/operator-expr.md' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/linker-plugin-lto.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/linker-plugin-lto.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.html' in chapter 'reference/profiles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.html' in chapter 'reference/config.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.md' in chapter 'reference/config.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.md' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.html' in chapter 'reference/config.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.html' in chapter 'reference/config.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.html' in chapter 'reference/config.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/macro.env.html' in chapter 'reference/environment-variables.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/macro.env.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.html' in chapter 'reference/environment-variables.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.html' in chapter 'reference/environment-variables.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.html' in chapter 'reference/environment-variables.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.html' in chapter 'reference/environment-variables.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.html' in chapter 'reference/environment-variables.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.html' in chapter 'reference/environment-variables.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.html' in chapter 'reference/environment-variables.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.html' in chapter 'reference/environment-variables.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.html' in chapter 'reference/environment-variables.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.html' in chapter 'reference/environment-variables.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.html' in chapter 'reference/environment-variables.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.md' in chapter 'reference/build-scripts.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.md' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.md' in chapter 'reference/build-scripts.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.md' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.md' in chapter 'reference/build-scripts.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.md' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/command-line-arguments.md' in chapter 'reference/build-scripts.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/command-line-arguments.md' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../nomicon/ffi.md' in chapter 'reference/build-scripts.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../nomicon/ffi.md' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/command-line-arguments.md' in chapter 'reference/build-scripts.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/command-line-arguments.md' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.md' in chapter 'reference/build-scripts.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.md' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.md' in chapter 'reference/build-scripts.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.md' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.md' in chapter 'reference/build-scripts.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.md' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/command-line-arguments.md' in chapter 'reference/build-scripts.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/command-line-arguments.md' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/command-line-arguments.md' in chapter 'reference/build-scripts.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/command-line-arguments.md' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/command-line-arguments.md' in chapter 'reference/build-scripts.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/command-line-arguments.md' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.md' in chapter 'reference/build-scripts.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.md' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/macro.env.html' in chapter 'reference/build-scripts.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/macro.env.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.md' in chapter 'reference/build-scripts.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/codegen-options/index.md' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/macro.include.html' in chapter 'reference/build-script-examples.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/macro.include.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/macro.concat.html' in chapter 'reference/build-script-examples.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/macro.concat.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/macro.env.html' in chapter 'reference/build-script-examples.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/macro.env.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.md' in chapter 'reference/build-script-examples.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.md' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/macro.cfg.html' in chapter 'reference/build-script-examples.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/macro.cfg.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/json.md' in chapter 'reference/external-tools.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/json.md' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/primitive.char.html' in chapter 'reference/registry-index.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/primitive.char.html' WARN mdbook_pandoc::preprocess: Heading (level h4) converted to paragraph in chapter: Registry Index WARN mdbook_pandoc::preprocess: Heading (level h4) converted to paragraph in chapter: Registry Index WARN mdbook_pandoc::preprocess: Heading (level h4) converted to paragraph in chapter: Registry Index WARN mdbook_pandoc::preprocess: Heading (level h4) converted to paragraph in chapter: Registry Index WARN mdbook_pandoc::preprocess: Heading (level h4) converted to paragraph in chapter: Registry Index -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/any/trait.Any.html' in chapter 'reference/resolver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/any/trait.Any.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/items.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/items.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.md' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.md' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.md' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.md' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/diagnostics.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/diagnostics.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/diagnostics.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/diagnostics.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/items/use-declarations.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/items/use-declarations.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/items.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/items.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/type-layout.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/type-layout.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/type-layout.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/type-layout.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/type-layout.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/type-layout.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/cell/struct.UnsafeCell.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/cell/struct.UnsafeCell.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/type-layout.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/type-layout.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/type-layout.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/type-layout.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/type-layout.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/type-layout.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/type-layout.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/type-layout.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../edition-guide/rust-2021/disjoint-capture-in-closures.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../edition-guide/rust-2021/disjoint-capture-in-closures.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/mem/fn.transmute.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/mem/fn.transmute.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/mem/fn.transmute.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/mem/fn.transmute.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/expressions/struct-expr.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/expressions/struct-expr.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/type_system.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/type_system.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/default/trait.Default.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/default/trait.Default.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/expressions/struct-expr.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/expressions/struct-expr.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/type_system.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/type_system.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/default/trait.Default.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/default/trait.Default.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/expressions/struct-expr.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/expressions/struct-expr.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/expressions/struct-expr.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/expressions/struct-expr.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/type_system.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/type_system.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/type_system.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/type_system.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/patterns.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/patterns.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/type_system.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/type_system.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/items/implementations.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/items/implementations.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/expressions/call-expr.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/expressions/call-expr.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/items/traits.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/items/traits.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/expressions/call-expr.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/expressions/call-expr.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/diagnostics.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/diagnostics.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/lints/listing/warn-by-default.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/lints/listing/warn-by-default.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/names/preludes.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/names/preludes.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/type_system.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/type_system.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/expressions/struct-expr.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/expressions/struct-expr.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/expressions/struct-expr.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/expressions/struct-expr.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/expressions/struct-expr.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/expressions/struct-expr.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/type_system.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/type_system.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/type_system.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/type_system.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/type_system.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/type_system.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/type_system.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/type_system.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/lints/listing/warn-by-default.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/lints/listing/warn-by-default.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/diagnostics.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/diagnostics.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/lints/listing/warn-by-default.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/lints/listing/warn-by-default.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/diagnostics.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/diagnostics.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/lints/listing/warn-by-default.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/lints/listing/warn-by-default.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/lints/levels.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/lints/levels.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../book/appendix-07-nightly-rust.html' in chapter 'reference/unstable.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../book/appendix-07-nightly-rust.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../edition-guide/index.html' in chapter 'reference/unstable.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../edition-guide/index.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../edition-guide/index.html' in chapter 'reference/unstable.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../edition-guide/index.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../edition-guide/index.html' in chapter 'appendix/glossary.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/appendix/../../edition-guide/index.html' -DEBUG mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/codegen.html' in chapter 'appendix/glossary.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/appendix/../../reference/attributes/codegen.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/any/trait.Any.html' in chapter 'reference/resolver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/any/trait.Any.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/items.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/items.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.md' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.md' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.md' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/conditional-compilation.md' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/diagnostics.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/diagnostics.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/diagnostics.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/diagnostics.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/items/use-declarations.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/items/use-declarations.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/items.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/items.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/type-layout.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/type-layout.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/type-layout.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/type-layout.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/type-layout.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/type-layout.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/cell/struct.UnsafeCell.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/cell/struct.UnsafeCell.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/type-layout.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/type-layout.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/type-layout.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/type-layout.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/type-layout.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/type-layout.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/type-layout.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/type-layout.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../edition-guide/rust-2021/disjoint-capture-in-closures.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../edition-guide/rust-2021/disjoint-capture-in-closures.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/mem/fn.transmute.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/mem/fn.transmute.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/mem/fn.transmute.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/mem/fn.transmute.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/expressions/struct-expr.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/expressions/struct-expr.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/type_system.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/type_system.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/default/trait.Default.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/default/trait.Default.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/expressions/struct-expr.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/expressions/struct-expr.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/type_system.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/type_system.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/default/trait.Default.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../std/default/trait.Default.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/expressions/struct-expr.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/expressions/struct-expr.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/expressions/struct-expr.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/expressions/struct-expr.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/type_system.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/type_system.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/type_system.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/type_system.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/patterns.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/patterns.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/type_system.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/type_system.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/items/implementations.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/items/implementations.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/expressions/call-expr.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/expressions/call-expr.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/items/traits.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/items/traits.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/expressions/call-expr.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/expressions/call-expr.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/diagnostics.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/diagnostics.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/lints/listing/warn-by-default.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/lints/listing/warn-by-default.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/names/preludes.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/names/preludes.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/type_system.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/type_system.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/expressions/struct-expr.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/expressions/struct-expr.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/expressions/struct-expr.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/expressions/struct-expr.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/expressions/struct-expr.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/expressions/struct-expr.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/type_system.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/type_system.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/type_system.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/type_system.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/type_system.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/type_system.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/type_system.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/type_system.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/lints/listing/warn-by-default.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/lints/listing/warn-by-default.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/diagnostics.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/diagnostics.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/lints/listing/warn-by-default.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/lints/listing/warn-by-default.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/diagnostics.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../reference/attributes/diagnostics.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/lints/listing/warn-by-default.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/lints/listing/warn-by-default.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/lints/levels.html' in chapter 'reference/semver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../rustc/lints/levels.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../book/appendix-07-nightly-rust.html' in chapter 'reference/unstable.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../book/appendix-07-nightly-rust.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../edition-guide/index.html' in chapter 'reference/unstable.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../edition-guide/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../edition-guide/index.html' in chapter 'reference/unstable.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/reference/../../edition-guide/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../edition-guide/index.html' in chapter 'appendix/glossary.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/appendix/../../edition-guide/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/attributes/codegen.html' in chapter 'appendix/glossary.md', linking to hosted HTML book at 'https://doc.rust-lang.org/cargo/appendix/../../reference/attributes/codegen.html' DEBUG mdbook_pandoc::pandoc::renderer: Running pandoc [WARNING] [makePDF] LaTeX Warning: Hyper reference `book__pdf__src__commands__cargomd__option-cargo---offline' @@ -174,5 +174,4 @@ DEBUG mdbook_pandoc::pandoc::renderer: Running pandoc `book__pdf__src__commands__cargo-buildmd__option-cargo-build---keep-going' on $PAGE undefined on input $LINE. [WARNING] [makePDF] LaTeX Warning: There were undefined references. - INFO mdbook_pandoc::pandoc::renderer: Wrote output to book/pdf/book.pdf - + INFO mdbook_pandoc::pandoc::renderer: Wrote output to book/pdf/book.pdf diff --git a/src/snapshots/mdbook_pandoc__tests__nomicon.snap b/src/snapshots/mdbook_pandoc__tests__nomicon.snap index 69f54ff..dbceb1a 100644 --- a/src/snapshots/mdbook_pandoc__tests__nomicon.snap +++ b/src/snapshots/mdbook_pandoc__tests__nomicon.snap @@ -4,62 +4,57 @@ expression: logs --- INFO mdbook::book: Running the pandoc backend INFO mdbook_pandoc: Processing redirects in [output.html.redirect] - WARN mdbook_pandoc::preprocess: Unable to normalize link '../book/index.html' in chapter 'Introduction': Unable to canonicalize path: $ROOT/src/../book/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../book/index.html' in chapter 'Introduction': Unable to canonicalize path: $ROOT/src/../book/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../reference/index.html' in chapter 'Introduction': Unable to canonicalize path: $ROOT/src/../reference/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/primitive.slice.html#method.get_unchecked' in chapter 'How Safe and Unsafe Interact': Unable to canonicalize path: $ROOT/src/../std/primitive.slice.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/marker/trait.Send.html' in chapter 'How Safe and Unsafe Interact': Unable to canonicalize path: $ROOT/src/../std/marker/trait.Send.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/primitive.slice.html#method.get_unchecked' in chapter 'How Safe and Unsafe Interact': Unable to canonicalize path: $ROOT/src/../std/primitive.slice.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/mem/fn.transmute.html' in chapter 'How Safe and Unsafe Interact': Unable to canonicalize path: $ROOT/src/../std/mem/fn.transmute.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/primitive.pointer.html#method.offset' in chapter 'How Safe and Unsafe Interact': Unable to canonicalize path: $ROOT/src/../std/primitive.pointer.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/primitive.pointer.html#method.offset' in chapter 'How Safe and Unsafe Interact': Unable to canonicalize path: $ROOT/src/../std/primitive.pointer.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/marker/trait.Send.html' in chapter 'How Safe and Unsafe Interact': Unable to canonicalize path: $ROOT/src/../std/marker/trait.Send.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/marker/trait.Sync.html' in chapter 'How Safe and Unsafe Interact': Unable to canonicalize path: $ROOT/src/../std/marker/trait.Sync.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/alloc/trait.GlobalAlloc.html' in chapter 'How Safe and Unsafe Interact': Unable to canonicalize path: $ROOT/src/../std/alloc/trait.GlobalAlloc.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/cmp/trait.PartialOrd.html' in chapter 'How Safe and Unsafe Interact': Unable to canonicalize path: $ROOT/src/../std/cmp/trait.PartialOrd.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/cmp/trait.Ord.html' in chapter 'How Safe and Unsafe Interact': Unable to canonicalize path: $ROOT/src/../std/cmp/trait.Ord.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/collections/struct.BTreeMap.html' in chapter 'How Safe and Unsafe Interact': Unable to canonicalize path: $ROOT/src/../std/collections/struct.BTreeMap.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../reference/attributes/codegen.html#the-target_feature-attribute' in chapter 'What Unsafe Can Do': Unable to canonicalize path: $ROOT/src/../reference/attributes/codegen.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/ptr/struct.NonNull.html' in chapter 'What Unsafe Can Do': Unable to canonicalize path: $ROOT/src/../std/ptr/struct.NonNull.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../reference/type-layout.html' in chapter 'Data Layout': Unable to canonicalize path: $ROOT/src/../reference/type-layout.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/primitive.slice.html' in chapter 'Exotically Sized Types': Unable to canonicalize path: $ROOT/src/../std/primitive.slice.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/primitive.str.html' in chapter 'Exotically Sized Types': Unable to canonicalize path: $ROOT/src/../std/primitive.str.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/alloc/trait.GlobalAlloc.html#tymethod.alloc' in chapter 'Exotically Sized Types': Unable to canonicalize path: $ROOT/src/../std/alloc/trait.GlobalAlloc.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/cell/struct.UnsafeCell.html' in chapter 'Other reprs': Unable to canonicalize path: $ROOT/src/../std/cell/struct.UnsafeCell.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/cell/struct.UnsafeCell.html' in chapter 'Other reprs': Unable to canonicalize path: $ROOT/src/../std/cell/struct.UnsafeCell.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../reference/subtyping.html#variance' in chapter 'Subtyping and Variance': Unable to canonicalize path: $ROOT/src/../reference/subtyping.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/mem/struct.ManuallyDrop.html' in chapter 'Drop Check': Unable to canonicalize path: $ROOT/src/../std/mem/struct.ManuallyDrop.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../core/marker/struct.PhantomPinned.html' in chapter 'PhantomData': Unable to canonicalize path: $ROOT/src/../core/marker/struct.PhantomPinned.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../reference/type-coercions.html#coercion-types' in chapter 'Coercions': Unable to canonicalize path: $ROOT/src/../reference/type-coercions.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../book/ch19-03-advanced-traits.html#fully-qualified-syntax-for-disambiguation-calling-methods-with-the-same-name' in chapter 'The Dot Operator': Unable to canonicalize path: $ROOT/src/../book/ch19-03-advanced-traits.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/ops/trait.Index.html' in chapter 'The Dot Operator': Unable to canonicalize path: $ROOT/src/../std/ops/trait.Index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/clone/trait.Clone.html#derivable' in chapter 'The Dot Operator': Unable to canonicalize path: $ROOT/src/../std/clone/trait.Clone.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../reference/expressions/operator-expr.html#type-cast-expressions' in chapter 'Casts': Unable to canonicalize path: $ROOT/src/../reference/expressions/operator-expr.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../reference/expressions/operator-expr.html#semantics' in chapter 'Casts': Unable to canonicalize path: $ROOT/src/../reference/expressions/operator-expr.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/mem/fn.transmute.html' in chapter 'Transmutes': Unable to canonicalize path: $ROOT/src/../std/mem/fn.transmute.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/mem/fn.transmute_copy.html' in chapter 'Transmutes': Unable to canonicalize path: $ROOT/src/../std/mem/fn.transmute_copy.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../core/mem/union.MaybeUninit.html' in chapter 'Unchecked': Unable to canonicalize path: $ROOT/src/../core/mem/union.MaybeUninit.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../core/mem/union.MaybeUninit.html#method.assume_init' in chapter 'Unchecked': Unable to canonicalize path: $ROOT/src/../core/mem/union.MaybeUninit.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../core/ptr/index.html' in chapter 'Unchecked': Unable to canonicalize path: $ROOT/src/../core/ptr/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../core/ptr/fn.write.html' in chapter 'Unchecked': Unable to canonicalize path: $ROOT/src/../core/ptr/fn.write.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/ptr/fn.copy.html' in chapter 'Unchecked': Unable to canonicalize path: $ROOT/src/../std/ptr/fn.copy.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/ptr/fn.copy_nonoverlapping.html' in chapter 'Unchecked': Unable to canonicalize path: $ROOT/src/../std/ptr/fn.copy_nonoverlapping.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../core/ptr/macro.addr_of_mut.html' in chapter 'Unchecked': Unable to canonicalize path: $ROOT/src/../core/ptr/macro.addr_of_mut.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/ptr/struct.NonNull.html' in chapter 'Layout': Unable to canonicalize path: $ROOT/src/vec/../../std/ptr/struct.NonNull.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../alloc/alloc/fn.alloc.html' in chapter 'Allocating': Unable to canonicalize path: $ROOT/src/vec/../../alloc/alloc/fn.alloc.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../alloc/alloc/fn.realloc.html' in chapter 'Allocating': Unable to canonicalize path: $ROOT/src/vec/../../alloc/alloc/fn.realloc.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../alloc/alloc/fn.dealloc.html' in chapter 'Allocating': Unable to canonicalize path: $ROOT/src/vec/../../alloc/alloc/fn.dealloc.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../alloc/alloc/index.html' in chapter 'Allocating': Unable to canonicalize path: $ROOT/src/vec/../../alloc/alloc/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/alloc/struct.Global.html' in chapter 'Allocating': Unable to canonicalize path: $ROOT/src/vec/../../std/alloc/struct.Global.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../alloc/alloc/fn.handle_alloc_error.html' in chapter 'Allocating': Unable to canonicalize path: $ROOT/src/vec/../../alloc/alloc/fn.handle_alloc_error.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/ops/trait.Drop.html' in chapter 'FFI': Unable to canonicalize path: $ROOT/src/../std/ops/trait.Drop.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/panic/fn.catch_unwind.html' in chapter 'FFI': Unable to canonicalize path: $ROOT/src/../std/panic/fn.catch_unwind.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/panic/fn.catch_unwind.html' in chapter 'FFI': Unable to canonicalize path: $ROOT/src/../std/panic/fn.catch_unwind.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/panic/fn.catch_unwind.html' in chapter 'FFI': Unable to canonicalize path: $ROOT/src/../std/panic/fn.catch_unwind.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../core/panic/struct.PanicInfo.html' in chapter '#[panic_handler]': Unable to canonicalize path: $ROOT/src/../core/panic/struct.PanicInfo.html: No such file or directory (os error 2) - WARN mdbook_pandoc: Unable to resolve one or more relative links within the book, consider setting the `hosted-html` option in `[output.pandoc]` -[WARNING] Missing character: There is no 🙀 (U+1F640) (U+1F640) in font NotoSerif:mode=node;script -[WARNING] Missing character: There is no 😿 (U+1F63F) (U+1F63F) in font NotoSansMono:mode=node;scr -[WARNING] Missing character: There is no 😿 (U+1F63F) (U+1F63F) in font NotoSansMono:mode=node;scr - INFO mdbook_pandoc::pandoc::renderer: Wrote output to book/pdf/book.pdf - + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../book/index.html' in chapter 'intro.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../book/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../book/index.html' in chapter 'intro.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../book/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../reference/index.html' in chapter 'intro.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../reference/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/primitive.slice.html' in chapter 'safe-unsafe-meaning.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../std/primitive.slice.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/marker/trait.Send.html' in chapter 'safe-unsafe-meaning.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../std/marker/trait.Send.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/primitive.slice.html' in chapter 'safe-unsafe-meaning.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../std/primitive.slice.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/mem/fn.transmute.html' in chapter 'safe-unsafe-meaning.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../std/mem/fn.transmute.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/primitive.pointer.html' in chapter 'safe-unsafe-meaning.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../std/primitive.pointer.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/primitive.pointer.html' in chapter 'safe-unsafe-meaning.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../std/primitive.pointer.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/marker/trait.Send.html' in chapter 'safe-unsafe-meaning.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../std/marker/trait.Send.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/marker/trait.Sync.html' in chapter 'safe-unsafe-meaning.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../std/marker/trait.Sync.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/alloc/trait.GlobalAlloc.html' in chapter 'safe-unsafe-meaning.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../std/alloc/trait.GlobalAlloc.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/cmp/trait.PartialOrd.html' in chapter 'safe-unsafe-meaning.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../std/cmp/trait.PartialOrd.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/cmp/trait.Ord.html' in chapter 'safe-unsafe-meaning.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../std/cmp/trait.Ord.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/collections/struct.BTreeMap.html' in chapter 'safe-unsafe-meaning.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../std/collections/struct.BTreeMap.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../reference/attributes/codegen.html' in chapter 'what-unsafe-does.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../reference/attributes/codegen.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/ptr/struct.NonNull.html' in chapter 'what-unsafe-does.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../std/ptr/struct.NonNull.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../reference/type-layout.html' in chapter 'data.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../reference/type-layout.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/primitive.slice.html' in chapter 'exotic-sizes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../std/primitive.slice.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/primitive.str.html' in chapter 'exotic-sizes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../std/primitive.str.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/alloc/trait.GlobalAlloc.html' in chapter 'exotic-sizes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../std/alloc/trait.GlobalAlloc.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/cell/struct.UnsafeCell.html' in chapter 'other-reprs.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../std/cell/struct.UnsafeCell.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/cell/struct.UnsafeCell.html' in chapter 'other-reprs.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../std/cell/struct.UnsafeCell.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../reference/subtyping.html' in chapter 'subtyping.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../reference/subtyping.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/mem/struct.ManuallyDrop.html' in chapter 'dropck.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../std/mem/struct.ManuallyDrop.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../core/marker/struct.PhantomPinned.html' in chapter 'phantom-data.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../core/marker/struct.PhantomPinned.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../reference/type-coercions.html' in chapter 'coercions.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../reference/type-coercions.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../book/ch19-03-advanced-traits.html' in chapter 'dot-operator.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../book/ch19-03-advanced-traits.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/ops/trait.Index.html' in chapter 'dot-operator.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../std/ops/trait.Index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/clone/trait.Clone.html' in chapter 'dot-operator.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../std/clone/trait.Clone.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../reference/expressions/operator-expr.html' in chapter 'casts.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../reference/expressions/operator-expr.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../reference/expressions/operator-expr.html' in chapter 'casts.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../reference/expressions/operator-expr.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/mem/fn.transmute.html' in chapter 'transmutes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../std/mem/fn.transmute.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/mem/fn.transmute_copy.html' in chapter 'transmutes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../std/mem/fn.transmute_copy.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../core/mem/union.MaybeUninit.html' in chapter 'unchecked-uninit.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../core/mem/union.MaybeUninit.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../core/mem/union.MaybeUninit.html' in chapter 'unchecked-uninit.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../core/mem/union.MaybeUninit.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../core/ptr/index.html' in chapter 'unchecked-uninit.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../core/ptr/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../core/ptr/fn.write.html' in chapter 'unchecked-uninit.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../core/ptr/fn.write.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/ptr/fn.copy.html' in chapter 'unchecked-uninit.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../std/ptr/fn.copy.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/ptr/fn.copy_nonoverlapping.html' in chapter 'unchecked-uninit.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../std/ptr/fn.copy_nonoverlapping.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../core/ptr/macro.addr_of_mut.html' in chapter 'unchecked-uninit.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../core/ptr/macro.addr_of_mut.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/ptr/struct.NonNull.html' in chapter 'vec/vec-layout.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/vec/../../std/ptr/struct.NonNull.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../alloc/alloc/fn.alloc.html' in chapter 'vec/vec-alloc.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/vec/../../alloc/alloc/fn.alloc.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../alloc/alloc/fn.realloc.html' in chapter 'vec/vec-alloc.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/vec/../../alloc/alloc/fn.realloc.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../alloc/alloc/fn.dealloc.html' in chapter 'vec/vec-alloc.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/vec/../../alloc/alloc/fn.dealloc.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../alloc/alloc/index.html' in chapter 'vec/vec-alloc.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/vec/../../alloc/alloc/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/alloc/struct.Global.html' in chapter 'vec/vec-alloc.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/vec/../../std/alloc/struct.Global.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../alloc/alloc/fn.handle_alloc_error.html' in chapter 'vec/vec-alloc.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/vec/../../alloc/alloc/fn.handle_alloc_error.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/ops/trait.Drop.html' in chapter 'ffi.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../std/ops/trait.Drop.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/panic/fn.catch_unwind.html' in chapter 'ffi.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../std/panic/fn.catch_unwind.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/panic/fn.catch_unwind.html' in chapter 'ffi.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../std/panic/fn.catch_unwind.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/panic/fn.catch_unwind.html' in chapter 'ffi.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../std/panic/fn.catch_unwind.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../core/panic/struct.PanicInfo.html' in chapter 'panic-handler.md', linking to hosted HTML book at 'https://doc.rust-lang.org/nomicon/../core/panic/struct.PanicInfo.html' + INFO mdbook_pandoc::pandoc::renderer: Wrote output to book/pdf/book.pdf diff --git a/src/snapshots/mdbook_pandoc__tests__rust_book.snap b/src/snapshots/mdbook_pandoc__tests__rust_book.snap index 99f774e..0a1d6ef 100644 --- a/src/snapshots/mdbook_pandoc__tests__rust_book.snap +++ b/src/snapshots/mdbook_pandoc__tests__rust_book.snap @@ -3,40 +3,39 @@ source: src/lib.rs expression: logs --- INFO mdbook::book: Running the pandoc backend - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/prelude/index.html' in chapter 'Programming a Guessing Game': Unable to canonicalize path: $ROOT/src/../std/prelude/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/string/struct.String.html' in chapter 'Programming a Guessing Game': Unable to canonicalize path: $ROOT/src/../std/string/struct.String.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/io/struct.Stdin.html' in chapter 'Programming a Guessing Game': Unable to canonicalize path: $ROOT/src/../std/io/struct.Stdin.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/io/struct.Stdin.html#method.read_line' in chapter 'Programming a Guessing Game': Unable to canonicalize path: $ROOT/src/../std/io/struct.Stdin.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/result/enum.Result.html' in chapter 'Programming a Guessing Game': Unable to canonicalize path: $ROOT/src/../std/result/enum.Result.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/result/enum.Result.html#method.expect' in chapter 'Programming a Guessing Game': Unable to canonicalize path: $ROOT/src/../std/result/enum.Result.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/primitive.str.html#method.parse' in chapter 'Programming a Guessing Game': Unable to canonicalize path: $ROOT/src/../std/primitive.str.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../reference/const_eval.html' in chapter 'Variables and Mutability': Unable to canonicalize path: $ROOT/src/../reference/const_eval.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/ops/trait.Drop.html#tymethod.drop' in chapter 'What is Ownership?': Unable to canonicalize path: $ROOT/src/../std/ops/trait.Drop.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/macro.println.html' in chapter 'An Example Program Using Structs': Unable to canonicalize path: $ROOT/src/../std/macro.println.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/macro.dbg.html' in chapter 'An Example Program Using Structs': Unable to canonicalize path: $ROOT/src/../std/macro.dbg.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../reference/attributes.html' in chapter 'An Example Program Using Structs': Unable to canonicalize path: $ROOT/src/../reference/attributes.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/net/enum.IpAddr.html' in chapter 'Defining an Enum': Unable to canonicalize path: $ROOT/src/../std/net/enum.IpAddr.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/option/enum.Option.html' in chapter 'Defining an Enum': Unable to canonicalize path: $ROOT/src/../std/option/enum.Option.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/option/enum.Option.html' in chapter 'Defining an Enum': Unable to canonicalize path: $ROOT/src/../std/option/enum.Option.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/prelude/index.html#other-preludes' in chapter 'Bringing Paths Into Scope with the use Keyword': Unable to canonicalize path: $ROOT/src/../std/prelude/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/collections/index.html' in chapter 'Common Collections': Unable to canonicalize path: $ROOT/src/../std/collections/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../nomicon/vec/vec.html' in chapter 'Storing Lists of Values with Vectors': Unable to canonicalize path: $ROOT/src/../nomicon/vec/vec.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/vec/struct.Vec.html' in chapter 'Storing Lists of Values with Vectors': Unable to canonicalize path: $ROOT/src/../std/vec/struct.Vec.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/process/trait.Termination.html' in chapter 'Recoverable Errors with Result': Unable to canonicalize path: $ROOT/src/../std/process/trait.Termination.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../reference/index.html' in chapter 'Validating References with Lifetimes': Unable to canonicalize path: $ROOT/src/../reference/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../unstable-book/library-features/test.html' in chapter 'How to Write Tests': Unable to canonicalize path: $ROOT/src/../unstable-book/library-features/test.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/option/enum.Option.html#method.unwrap_or_else' in chapter 'Closures: Anonymous Functions that Capture Their Environment': Unable to canonicalize path: $ROOT/src/../std/option/enum.Option.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../nomicon/index.html' in chapter 'Reference Cycles Can Leak Memory': Unable to canonicalize path: $ROOT/src/../nomicon/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/sync/atomic/index.html' in chapter 'Shared-State Concurrency': Unable to canonicalize path: $ROOT/src/../std/sync/atomic/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/sync/atomic/index.html' in chapter 'Shared-State Concurrency': Unable to canonicalize path: $ROOT/src/../std/sync/atomic/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../nomicon/index.html' in chapter 'Extensible Concurrency with the Sync and Send Traits': Unable to canonicalize path: $ROOT/src/../nomicon/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../reference/items/unions.html' in chapter 'Unsafe Rust': Unable to canonicalize path: $ROOT/src/../reference/items/unions.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../reference/macros-by-example.html' in chapter 'Macros': Unable to canonicalize path: $ROOT/src/../reference/macros-by-example.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/thread/struct.Builder.html' in chapter 'Turning Our Single-Threaded Server into a Multithreaded Server': Unable to canonicalize path: $ROOT/src/../std/thread/struct.Builder.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/thread/struct.Builder.html#method.spawn' in chapter 'Turning Our Single-Threaded Server into a Multithreaded Server': Unable to canonicalize path: $ROOT/src/../std/thread/struct.Builder.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../reference/items/unions.html' in chapter 'A - Keywords': Unable to canonicalize path: $ROOT/src/../reference/items/unions.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/index.html' in chapter 'C - Derivable Traits': Unable to canonicalize path: $ROOT/src/../std/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc: Unable to resolve one or more relative links within the book, consider setting the `hosted-html` option in `[output.pandoc]` + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/prelude/index.html' in chapter 'ch02-00-guessing-game-tutorial.md', linking to hosted HTML book at 'https://doc.rust-lang.org/book/../std/prelude/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/string/struct.String.html' in chapter 'ch02-00-guessing-game-tutorial.md', linking to hosted HTML book at 'https://doc.rust-lang.org/book/../std/string/struct.String.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/io/struct.Stdin.html' in chapter 'ch02-00-guessing-game-tutorial.md', linking to hosted HTML book at 'https://doc.rust-lang.org/book/../std/io/struct.Stdin.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/io/struct.Stdin.html' in chapter 'ch02-00-guessing-game-tutorial.md', linking to hosted HTML book at 'https://doc.rust-lang.org/book/../std/io/struct.Stdin.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/result/enum.Result.html' in chapter 'ch02-00-guessing-game-tutorial.md', linking to hosted HTML book at 'https://doc.rust-lang.org/book/../std/result/enum.Result.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/result/enum.Result.html' in chapter 'ch02-00-guessing-game-tutorial.md', linking to hosted HTML book at 'https://doc.rust-lang.org/book/../std/result/enum.Result.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/primitive.str.html' in chapter 'ch02-00-guessing-game-tutorial.md', linking to hosted HTML book at 'https://doc.rust-lang.org/book/../std/primitive.str.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../reference/const_eval.html' in chapter 'ch03-01-variables-and-mutability.md', linking to hosted HTML book at 'https://doc.rust-lang.org/book/../reference/const_eval.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/ops/trait.Drop.html' in chapter 'ch04-01-what-is-ownership.md', linking to hosted HTML book at 'https://doc.rust-lang.org/book/../std/ops/trait.Drop.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/macro.println.html' in chapter 'ch05-02-example-structs.md', linking to hosted HTML book at 'https://doc.rust-lang.org/book/../std/macro.println.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/macro.dbg.html' in chapter 'ch05-02-example-structs.md', linking to hosted HTML book at 'https://doc.rust-lang.org/book/../std/macro.dbg.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../reference/attributes.html' in chapter 'ch05-02-example-structs.md', linking to hosted HTML book at 'https://doc.rust-lang.org/book/../reference/attributes.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/net/enum.IpAddr.html' in chapter 'ch06-01-defining-an-enum.md', linking to hosted HTML book at 'https://doc.rust-lang.org/book/../std/net/enum.IpAddr.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/option/enum.Option.html' in chapter 'ch06-01-defining-an-enum.md', linking to hosted HTML book at 'https://doc.rust-lang.org/book/../std/option/enum.Option.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/option/enum.Option.html' in chapter 'ch06-01-defining-an-enum.md', linking to hosted HTML book at 'https://doc.rust-lang.org/book/../std/option/enum.Option.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/prelude/index.html' in chapter 'ch07-04-bringing-paths-into-scope-with-the-use-keyword.md', linking to hosted HTML book at 'https://doc.rust-lang.org/book/../std/prelude/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/collections/index.html' in chapter 'ch08-00-common-collections.md', linking to hosted HTML book at 'https://doc.rust-lang.org/book/../std/collections/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../nomicon/vec/vec.html' in chapter 'ch08-01-vectors.md', linking to hosted HTML book at 'https://doc.rust-lang.org/book/../nomicon/vec/vec.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/vec/struct.Vec.html' in chapter 'ch08-01-vectors.md', linking to hosted HTML book at 'https://doc.rust-lang.org/book/../std/vec/struct.Vec.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/process/trait.Termination.html' in chapter 'ch09-02-recoverable-errors-with-result.md', linking to hosted HTML book at 'https://doc.rust-lang.org/book/../std/process/trait.Termination.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../reference/index.html' in chapter 'ch10-03-lifetime-syntax.md', linking to hosted HTML book at 'https://doc.rust-lang.org/book/../reference/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../unstable-book/library-features/test.html' in chapter 'ch11-01-writing-tests.md', linking to hosted HTML book at 'https://doc.rust-lang.org/book/../unstable-book/library-features/test.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/option/enum.Option.html' in chapter 'ch13-01-closures.md', linking to hosted HTML book at 'https://doc.rust-lang.org/book/../std/option/enum.Option.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../nomicon/index.html' in chapter 'ch15-06-reference-cycles.md', linking to hosted HTML book at 'https://doc.rust-lang.org/book/../nomicon/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/sync/atomic/index.html' in chapter 'ch16-03-shared-state.md', linking to hosted HTML book at 'https://doc.rust-lang.org/book/../std/sync/atomic/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/sync/atomic/index.html' in chapter 'ch16-03-shared-state.md', linking to hosted HTML book at 'https://doc.rust-lang.org/book/../std/sync/atomic/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../nomicon/index.html' in chapter 'ch16-04-extensible-concurrency-sync-and-send.md', linking to hosted HTML book at 'https://doc.rust-lang.org/book/../nomicon/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../reference/items/unions.html' in chapter 'ch19-01-unsafe-rust.md', linking to hosted HTML book at 'https://doc.rust-lang.org/book/../reference/items/unions.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../reference/macros-by-example.html' in chapter 'ch19-06-macros.md', linking to hosted HTML book at 'https://doc.rust-lang.org/book/../reference/macros-by-example.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/thread/struct.Builder.html' in chapter 'ch20-02-multithreaded.md', linking to hosted HTML book at 'https://doc.rust-lang.org/book/../std/thread/struct.Builder.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/thread/struct.Builder.html' in chapter 'ch20-02-multithreaded.md', linking to hosted HTML book at 'https://doc.rust-lang.org/book/../std/thread/struct.Builder.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../reference/items/unions.html' in chapter 'appendix-01-keywords.md', linking to hosted HTML book at 'https://doc.rust-lang.org/book/../reference/items/unions.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/index.html' in chapter 'appendix-03-derivable-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/book/../std/index.html' [WARNING] [makePDF] LaTeX Warning: Hyper reference `book__pdf__src__ch15-02-derefmd__following-the-pointer-to-the-value-with-the-dereference-operator' on $PAGE undefined on input $LINE. @@ -50,9 +49,6 @@ expression: logs `book__pdf__src__ch04-01-what-is-ownershipmd__ways-variables-and-data-interact-clone' on $PAGE undefined on input $LINE. [WARNING] [makePDF] LaTeX Warning: There were undefined references. -[WARNING] Missing character: There is no 🚨 (U+1F6A8) (U+1F6A8) in font NotoSerif/B:mode=node;scri -[WARNING] Missing character: There is no 👍 (U+1F44D) (U+1F44D) in font NotoSansMono:mode=node;scr -[WARNING] Missing character: There is no 😻 (U+1F63B) (U+1F63B) in font NotoSansMono:mode=node;scr [WARNING] Missing character: There is no ا (U+0627) (U+0627) in font NotoSansMono:mode=node;script [WARNING] Missing character: There is no ل (U+0644) (U+0644) in font NotoSansMono:mode=node;script [WARNING] Missing character: There is no س (U+0633) (U+0633) in font NotoSansMono:mode=node;script @@ -77,18 +73,6 @@ expression: logs [WARNING] Missing character: There is no ् (U+094D) (U+094D) in font NotoSansMono:mode=node;scrip [WARNING] Missing character: There is no त (U+0924) (U+0924) in font NotoSansMono:mode=node;scrip [WARNING] Missing character: There is no े (U+0947) (U+0947) in font NotoSansMono:mode=node;scrip -[WARNING] Missing character: There is no こ (U+3053) (U+3053) in font NotoSansMono:mode=node;scrip -[WARNING] Missing character: There is no ん (U+3093) (U+3093) in font NotoSansMono:mode=node;scrip -[WARNING] Missing character: There is no に (U+306B) (U+306B) in font NotoSansMono:mode=node;scrip -[WARNING] Missing character: There is no ち (U+3061) (U+3061) in font NotoSansMono:mode=node;scrip -[WARNING] Missing character: There is no は (U+306F) (U+306F) in font NotoSansMono:mode=node;scrip -[WARNING] Missing character: There is no 안 (U+C548) (U+C548) in font NotoSansMono:mode=node;scrip -[WARNING] Missing character: There is no 녕 (U+B155) (U+B155) in font NotoSansMono:mode=node;scrip -[WARNING] Missing character: There is no 하 (U+D558) (U+D558) in font NotoSansMono:mode=node;scrip -[WARNING] Missing character: There is no 세 (U+C138) (U+C138) in font NotoSansMono:mode=node;scrip -[WARNING] Missing character: There is no 요 (U+C694) (U+C694) in font NotoSansMono:mode=node;scrip -[WARNING] Missing character: There is no 你 (U+4F60) (U+4F60) in font NotoSansMono:mode=node;scrip -[WARNING] Missing character: There is no 好 (U+597D) (U+597D) in font NotoSansMono:mode=node;scrip [WARNING] Missing character: There is no न (U+0928) (U+0928) in font NotoSerif:mode=node;script=l [WARNING] Missing character: There is no म (U+092E) (U+092E) in font NotoSerif:mode=node;script=l [WARNING] Missing character: There is no स (U+0938) (U+0938) in font NotoSerif:mode=node;script=l @@ -107,20 +91,6 @@ expression: logs [WARNING] Missing character: There is no ् (U+094D) (U+094D) in font NotoSansMono:mode=node;scrip [WARNING] Missing character: There is no त (U+0924) (U+0924) in font NotoSansMono:mode=node;scrip [WARNING] Missing character: There is no े (U+0947) (U+0947) in font NotoSansMono:mode=node;scrip -[WARNING] Missing character: There is no 简 (U+7B80) (U+7B80) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no 体 (U+4F53) (U+4F53) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no 中 (U+4E2D) (U+4E2D) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no 文 (U+6587) (U+6587) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no 正 (U+6B63) (U+6B63) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no 體 (U+9AD4) (U+9AD4) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no 中 (U+4E2D) (U+4E2D) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no 文 (U+6587) (U+6587) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no 한 (U+D55C) (U+D55C) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no 국 (U+AD6D) (U+AD6D) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no 어 (U+C5B4) (U+C5B4) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no 日 (U+65E5) (U+65E5) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no 本 (U+672C) (U+672C) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no 語 (U+8A9E) (U+8A9E) in font NotoSerif:mode=node;script=l [WARNING] Missing character: There is no ह (U+0939) (U+0939) in font NotoSerif:mode=node;script=l [WARNING] Missing character: There is no ि (U+093F) (U+093F) in font NotoSerif:mode=node;script=l [WARNING] Missing character: There is no ं (U+0902) (U+0902) in font NotoSerif:mode=node;script=l diff --git a/src/snapshots/mdbook_pandoc__tests__rust_by_example.snap b/src/snapshots/mdbook_pandoc__tests__rust_by_example.snap index e7bdb8e..98f6b79 100644 --- a/src/snapshots/mdbook_pandoc__tests__rust_by_example.snap +++ b/src/snapshots/mdbook_pandoc__tests__rust_by_example.snap @@ -3,13 +3,7 @@ source: src/lib.rs expression: logs --- INFO mdbook::book: Running the pandoc backend - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../reference/inline-assembly.html#abi-clobbers' in chapter 'Inline assembly': Unable to canonicalize path: $ROOT/src/unsafe/../../reference/inline-assembly.html: No such file or directory (os error 2) - WARN mdbook_pandoc: Unable to resolve one or more relative links within the book, consider setting the `hosted-html` option in `[output.pandoc]` + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/inline-assembly.html' in chapter 'unsafe/asm.md', linking to hosted HTML book at 'https://doc.rust-lang.org/rust-by-example/unsafe/../../reference/inline-assembly.html' [WARNING] Missing character: There is no 🛈 (U+1F6C8) (U+1F6C8) in font NotoSerif:mode=node;script [WARNING] Missing character: There is no 🛈 (U+1F6C8) (U+1F6C8) in font NotoSerif:mode=node;script -[WARNING] Missing character: There is no よ (U+3088) (U+3088) in font NotoSansMono:mode=node;scrip -[WARNING] Missing character: There is no う (U+3046) (U+3046) in font NotoSansMono:mode=node;scrip -[WARNING] Missing character: There is no こ (U+3053) (U+3053) in font NotoSansMono:mode=node;scrip -[WARNING] Missing character: There is no そ (U+305D) (U+305D) in font NotoSansMono:mode=node;scrip - INFO mdbook_pandoc::pandoc::renderer: Wrote output to book/pdf/book.pdf - + INFO mdbook_pandoc::pandoc::renderer: Wrote output to book/pdf/book.pdf diff --git a/src/snapshots/mdbook_pandoc__tests__rust_edition_guide.snap b/src/snapshots/mdbook_pandoc__tests__rust_edition_guide.snap index 8ff468e..eef19de 100644 --- a/src/snapshots/mdbook_pandoc__tests__rust_edition_guide.snap +++ b/src/snapshots/mdbook_pandoc__tests__rust_edition_guide.snap @@ -4,90 +4,88 @@ expression: logs --- INFO mdbook::book: Running the pandoc backend INFO mdbook_pandoc: Processing redirects in [output.html.redirect] - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/cargo-and-crates-io/cargo-can-use-a-local-registry-replacement.html => ../../../cargo/reference/source-replacement.html: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/cargo-and-crates-io/../../../cargo/reference/source-replacement.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/cargo-and-crates-io/cargo-check-for-faster-checking.html => ../../../cargo/commands/cargo-check.html: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/cargo-and-crates-io/../../../cargo/commands/cargo-check.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/cargo-and-crates-io/cargo-install-for-easy-installation-of-tools.html => ../../../cargo/commands/cargo-install.html: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/cargo-and-crates-io/../../../cargo/commands/cargo-install.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/cargo-and-crates-io/cargo-rustc-for-passing-arbitrary-flags-to-rustc.html => ../../../cargo/commands/cargo-rustc.html: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/cargo-and-crates-io/../../../cargo/commands/cargo-rustc.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/cargo-and-crates-io/cargo-workspaces-for-multi-package-projects.html => ../../../cargo/reference/workspaces.html: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/cargo-and-crates-io/../../../cargo/reference/workspaces.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/cargo-and-crates-io/index.html => ../../../cargo/index.html: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/cargo-and-crates-io/../../../cargo/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/cargo-and-crates-io/multi-file-examples.html => ../../../cargo/guide/project-layout.html: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/cargo-and-crates-io/../../../cargo/guide/project-layout.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/cargo-and-crates-io/replacing-dependencies-with-patch.html => ../../../cargo/reference/overriding-dependencies.html#the-patch-section: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/cargo-and-crates-io/../../../cargo/reference/overriding-dependencies.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/control-flow/index.html => ../../../rust-by-example/flow_control.html: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/control-flow/../../../rust-by-example/flow_control.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/control-flow/loops-can-break-with-a-value.html => ../../../rust-by-example/flow_control/loop/return.html: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/control-flow/../../../rust-by-example/flow_control/loop/return.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/data-types/choosing-alignment-with-the-repr-attribute.html => ../../../reference/type-layout.html#representations: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/data-types/../../../reference/type-layout.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/data-types/field-init-shorthand.html => ../../../reference/expressions/struct-expr.html#struct-field-init-shorthand: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/data-types/../../../reference/expressions/struct-expr.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/data-types/operator-equals-are-now-implementable.html => ../../../std/ops/index.html: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/data-types/../../../std/ops/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/data-types/union-for-an-unsafe-form-of-enum.html => ../../../reference/items/unions.html: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/data-types/../../../reference/items/unions.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/documentation/index.html => ../../../index.html: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/documentation/../../../index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/documentation/new-editions-of-the-book.html => ../../../book/index.html: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/documentation/../../../book/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/documentation/std-os-has-documentation-for-all-platforms.html => ../../../std/os/index.html: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/documentation/../../../std/os/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/documentation/the-rust-bookshelf.html => ../../../index.html: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/documentation/../../../index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/documentation/the-rustonomicon.html => ../../../nomicon/index.html: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/documentation/../../../nomicon/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/error-handling-and-panics/aborting-on-panic.html => ../../../book/ch09-01-unrecoverable-errors-with-panic.html: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/error-handling-and-panics/../../../book/ch09-01-unrecoverable-errors-with-panic.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/error-handling-and-panics/index.html => ../../../book/ch09-00-error-handling.html: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/error-handling-and-panics/../../../book/ch09-00-error-handling.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/error-handling-and-panics/question-mark-in-main-and-tests.html => ../../../rust-by-example/error/result.html#using-result-in-main: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/error-handling-and-panics/../../../rust-by-example/error/result.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/error-handling-and-panics/the-question-mark-operator-for-easier-error-handling.html => ../../../book/ch09-02-recoverable-errors-with-result.html: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/error-handling-and-panics/../../../book/ch09-02-recoverable-errors-with-result.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/macros/at-most-once.html => ../../../reference/macros-by-example.html#repetitions: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/macros/../../../reference/macros-by-example.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/macros/custom-derive.html => ../../../book/ch19-06-macros.html#how-to-write-a-custom-derive-macro: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/macros/../../../book/ch19-06-macros.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/macros/index.html => ../../../book/ch19-06-macros.html: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/macros/../../../book/ch19-06-macros.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/macros/macro-changes.html => ../../../book/ch19-06-macros.html: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/macros/../../../book/ch19-06-macros.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/module-system/more-visibility-modifiers.html => ../../../reference/visibility-and-privacy.html: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/module-system/../../../reference/visibility-and-privacy.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/module-system/nested-imports-with-use.html => ../../../rust-by-example/mod/use.html: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/module-system/../../../rust-by-example/mod/use.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/module-system/raw-identifiers.html => ../../../rust-by-example/compatibility/raw_identifiers.html: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/module-system/../../../rust-by-example/compatibility/raw_identifiers.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/ownership-and-lifetimes/index.html => ../../../book/ch04-00-understanding-ownership.html: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/ownership-and-lifetimes/../../../book/ch04-00-understanding-ownership.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/ownership-and-lifetimes/simpler-lifetimes-in-static-and-const.html => ../../../reference/lifetime-elision.html#static-lifetime-elision: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/ownership-and-lifetimes/../../../reference/lifetime-elision.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/platform-and-target-support/index.html => ../../../rustc/targets/index.html: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/platform-and-target-support/../../../rustc/targets/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/platform-and-target-support/libcore-for-low-level-rust.html => ../../../core/index.html: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/platform-and-target-support/../../../core/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/platform-and-target-support/msvc-toolchain-support.html => ../../../rustc/platform-support.html: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/platform-and-target-support/../../../rustc/platform-support.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/platform-and-target-support/musl-support-for-fully-static-binaries.html => ../../../rustc/platform-support.html: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/platform-and-target-support/../../../rustc/platform-support.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/rustdoc/documentation-tests-can-now-compile-fail.html => ../../../rustdoc/documentation-tests.html#attributes: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/rustdoc/../../../rustdoc/documentation-tests.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/rustdoc/index.html => ../../../rustdoc/index.html: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/rustdoc/../../../rustdoc/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/rustdoc/rustdoc-uses-commonmark.html => ../../../rustdoc/how-to-write-documentation.html#markdown: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/rustdoc/../../../rustdoc/how-to-write-documentation.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/the-compiler/an-attribute-for-deprecation.html => ../../../reference/attributes/diagnostics.html#the-deprecated-attribute: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/the-compiler/../../../reference/attributes/diagnostics.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-2018/trait-system/associated-constants.html => ../../../reference/items/associated-items.html#associated-constants: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-2018/trait-system/../../../reference/items/associated-items.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-next/cargo-vendor.html => ../../cargo/commands/cargo-vendor.html: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-next/../../cargo/commands/cargo-vendor.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-next/const-fn.html => ../../reference/const_eval.html: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-next/../../reference/const_eval.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-next/dbg-macro.html => ../../std/macro.dbg.html: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-next/../../std/macro.dbg.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-next/future.html => ../../std/future/trait.Future.html: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-next/../../std/future/trait.Future.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Failed to resolve redirect: /rust-next/pin.html => ../../std/pin/index.html: Unable to normalize redirect destination: Unable to canonicalize path: $ROOT/book/pdf/src/rust-next/../../std/pin/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../cargo/commands/cargo-fix.html' in chapter 'Transitioning an existing project to a new edition': Unable to canonicalize path: $ROOT/src/editions/../../cargo/commands/cargo-fix.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../cargo/commands/cargo-test.html' in chapter 'Transitioning an existing project to a new edition': Unable to canonicalize path: $ROOT/src/editions/../../cargo/commands/cargo-test.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../cargo/commands/cargo-fix.html' in chapter 'Advanced migrations': Unable to canonicalize path: $ROOT/src/editions/../../cargo/commands/cargo-fix.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../cargo/commands/cargo-check.html' in chapter 'Advanced migrations': Unable to canonicalize path: $ROOT/src/editions/../../cargo/commands/cargo-check.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../rustc/lints/index.html' in chapter 'Advanced migrations': Unable to canonicalize path: $ROOT/src/editions/../../rustc/lints/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../rustc/lints/groups.html' in chapter 'Advanced migrations': Unable to canonicalize path: $ROOT/src/editions/../../rustc/lints/groups.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../cargo/reference/features.html' in chapter 'Advanced migrations': Unable to canonicalize path: $ROOT/src/editions/../../cargo/reference/features.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../reference/conditional-compilation.html' in chapter 'Advanced migrations': Unable to canonicalize path: $ROOT/src/editions/../../reference/conditional-compilation.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../cargo/reference/workspaces.html' in chapter 'Advanced migrations': Unable to canonicalize path: $ROOT/src/editions/../../cargo/reference/workspaces.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../cargo/reference/manifest.html#the-package-section' in chapter 'Advanced migrations': Unable to canonicalize path: $ROOT/src/editions/../../cargo/reference/manifest.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../cargo/reference/cargo-targets.html' in chapter 'Advanced migrations': Unable to canonicalize path: $ROOT/src/editions/../../cargo/reference/cargo-targets.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../rustc/lints/listing/allowed-by-default.html#keyword-idents' in chapter 'Advanced migrations': Unable to canonicalize path: $ROOT/src/editions/../../rustc/lints/listing/allowed-by-default.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../rustc/lints/groups.html' in chapter 'Advanced migrations': Unable to canonicalize path: $ROOT/src/editions/../../rustc/lints/groups.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../reference/procedural-macros.html' in chapter 'Advanced migrations': Unable to canonicalize path: $ROOT/src/editions/../../reference/procedural-macros.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../rustdoc/documentation-tests.html' in chapter 'Advanced migrations': Unable to canonicalize path: $ROOT/src/editions/../../rustdoc/documentation-tests.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../rustdoc/documentation-tests.html#attributes' in chapter 'Advanced migrations': Unable to canonicalize path: $ROOT/src/editions/../../rustdoc/documentation-tests.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../cargo/reference/build-script-examples.html#code-generation' in chapter 'Advanced migrations': Unable to canonicalize path: $ROOT/src/editions/../../cargo/reference/build-script-examples.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../rustc/lints/groups.html' in chapter 'Advanced migrations': Unable to canonicalize path: $ROOT/src/editions/../../rustc/lints/groups.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../rustc/lints/levels.html#via-compiler-flag' in chapter 'Advanced migrations': Unable to canonicalize path: $ROOT/src/editions/../../rustc/lints/levels.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../rustc/json.html' in chapter 'Advanced migrations': Unable to canonicalize path: $ROOT/src/editions/../../rustc/json.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../rustc/lints/listing/allowed-by-default.html#unused-extern-crates' in chapter 'Advanced migrations': Unable to canonicalize path: $ROOT/src/editions/../../rustc/lints/listing/allowed-by-default.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../rustc/lints/listing/allowed-by-default.html#explicit-outlives-requirements' in chapter 'Advanced migrations': Unable to canonicalize path: $ROOT/src/editions/../../rustc/lints/listing/allowed-by-default.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/index.html' in chapter 'Path and module system changes': Unable to canonicalize path: $ROOT/src/rust-2018/../../std/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../reference/names/preludes.html#the-no_std-attribute' in chapter 'Path and module system changes': Unable to canonicalize path: $ROOT/src/rust-2018/../../reference/names/preludes.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../core/index.html' in chapter 'Path and module system changes': Unable to canonicalize path: $ROOT/src/rust-2018/../../core/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../proc_macro/index.html' in chapter 'Path and module system changes': Unable to canonicalize path: $ROOT/src/rust-2018/../../proc_macro/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../alloc/index.html' in chapter 'Path and module system changes': Unable to canonicalize path: $ROOT/src/rust-2018/../../alloc/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../test/index.html' in chapter 'Path and module system changes': Unable to canonicalize path: $ROOT/src/rust-2018/../../test/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../book/appendix-07-nightly-rust.html' in chapter 'Path and module system changes': Unable to canonicalize path: $ROOT/src/rust-2018/../../book/appendix-07-nightly-rust.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../rust-by-example/trait/impl_trait.html' in chapter 'New keywords': Unable to canonicalize path: $ROOT/src/rust-2018/../../rust-by-example/trait/impl_trait.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../cargo/reference/resolver.html#feature-resolver-version-2' in chapter 'Default Cargo feature resolver': Unable to canonicalize path: $ROOT/src/rust-2021/../../cargo/reference/resolver.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../cargo/reference/workspaces.html' in chapter 'Default Cargo feature resolver': Unable to canonicalize path: $ROOT/src/rust-2021/../../cargo/reference/workspaces.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../cargo/reference/workspaces.html#virtual-workspace' in chapter 'Default Cargo feature resolver': Unable to canonicalize path: $ROOT/src/rust-2021/../../cargo/reference/workspaces.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../cargo/reference/resolver.html#resolver-versions' in chapter 'Default Cargo feature resolver': Unable to canonicalize path: $ROOT/src/rust-2021/../../cargo/reference/resolver.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../cargo/commands/cargo-tree.html' in chapter 'Default Cargo feature resolver': Unable to canonicalize path: $ROOT/src/rust-2021/../../cargo/commands/cargo-tree.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../core/ffi/struct.CStr.html' in chapter 'C-string literals': Unable to canonicalize path: $ROOT/src/rust-2021/../../core/ffi/struct.CStr.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../core/ffi/struct.CStr.html' in chapter 'C-string literals': Unable to canonicalize path: $ROOT/src/rust-2021/../../core/ffi/struct.CStr.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../reference/tokens.html#c-string-and-raw-c-string-literals' in chapter 'C-string literals': Unable to canonicalize path: $ROOT/src/rust-2021/../../reference/tokens.html: No such file or directory (os error 2) - WARN mdbook_pandoc: Unable to resolve one or more relative links within the book, consider setting the `hosted-html` option in `[output.pandoc]` - INFO mdbook_pandoc::pandoc::renderer: Wrote output to book/pdf/book.pdf - + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../cargo/reference/source-replacement.html' in chapter '$ROOT/book/pdf/src/rust-2018/cargo-and-crates-io/cargo-can-use-a-local-registry-replacement.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/cargo-and-crates-io/../../../cargo/reference/source-replacement.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../cargo/commands/cargo-check.html' in chapter '$ROOT/book/pdf/src/rust-2018/cargo-and-crates-io/cargo-check-for-faster-checking.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/cargo-and-crates-io/../../../cargo/commands/cargo-check.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../cargo/commands/cargo-install.html' in chapter '$ROOT/book/pdf/src/rust-2018/cargo-and-crates-io/cargo-install-for-easy-installation-of-tools.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/cargo-and-crates-io/../../../cargo/commands/cargo-install.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../cargo/commands/cargo-rustc.html' in chapter '$ROOT/book/pdf/src/rust-2018/cargo-and-crates-io/cargo-rustc-for-passing-arbitrary-flags-to-rustc.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/cargo-and-crates-io/../../../cargo/commands/cargo-rustc.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../cargo/reference/workspaces.html' in chapter '$ROOT/book/pdf/src/rust-2018/cargo-and-crates-io/cargo-workspaces-for-multi-package-projects.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/cargo-and-crates-io/../../../cargo/reference/workspaces.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../cargo/index.html' in chapter '$ROOT/book/pdf/src/rust-2018/cargo-and-crates-io/index.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/cargo-and-crates-io/../../../cargo/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../cargo/guide/project-layout.html' in chapter '$ROOT/book/pdf/src/rust-2018/cargo-and-crates-io/multi-file-examples.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/cargo-and-crates-io/../../../cargo/guide/project-layout.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../cargo/reference/overriding-dependencies.html' in chapter '$ROOT/book/pdf/src/rust-2018/cargo-and-crates-io/replacing-dependencies-with-patch.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/cargo-and-crates-io/../../../cargo/reference/overriding-dependencies.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../rust-by-example/flow_control.html' in chapter '$ROOT/book/pdf/src/rust-2018/control-flow/index.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/control-flow/../../../rust-by-example/flow_control.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../rust-by-example/flow_control/loop/return.html' in chapter '$ROOT/book/pdf/src/rust-2018/control-flow/loops-can-break-with-a-value.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/control-flow/../../../rust-by-example/flow_control/loop/return.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../reference/type-layout.html' in chapter '$ROOT/book/pdf/src/rust-2018/data-types/choosing-alignment-with-the-repr-attribute.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/data-types/../../../reference/type-layout.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../reference/expressions/struct-expr.html' in chapter '$ROOT/book/pdf/src/rust-2018/data-types/field-init-shorthand.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/data-types/../../../reference/expressions/struct-expr.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../std/ops/index.html' in chapter '$ROOT/book/pdf/src/rust-2018/data-types/operator-equals-are-now-implementable.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/data-types/../../../std/ops/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../reference/items/unions.html' in chapter '$ROOT/book/pdf/src/rust-2018/data-types/union-for-an-unsafe-form-of-enum.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/data-types/../../../reference/items/unions.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../index.html' in chapter '$ROOT/book/pdf/src/rust-2018/documentation/index.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/documentation/../../../index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../book/index.html' in chapter '$ROOT/book/pdf/src/rust-2018/documentation/new-editions-of-the-book.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/documentation/../../../book/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../std/os/index.html' in chapter '$ROOT/book/pdf/src/rust-2018/documentation/std-os-has-documentation-for-all-platforms.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/documentation/../../../std/os/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../index.html' in chapter '$ROOT/book/pdf/src/rust-2018/documentation/the-rust-bookshelf.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/documentation/../../../index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../nomicon/index.html' in chapter '$ROOT/book/pdf/src/rust-2018/documentation/the-rustonomicon.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/documentation/../../../nomicon/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../book/ch09-01-unrecoverable-errors-with-panic.html' in chapter '$ROOT/book/pdf/src/rust-2018/error-handling-and-panics/aborting-on-panic.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/error-handling-and-panics/../../../book/ch09-01-unrecoverable-errors-with-panic.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../book/ch09-00-error-handling.html' in chapter '$ROOT/book/pdf/src/rust-2018/error-handling-and-panics/index.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/error-handling-and-panics/../../../book/ch09-00-error-handling.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../rust-by-example/error/result.html' in chapter '$ROOT/book/pdf/src/rust-2018/error-handling-and-panics/question-mark-in-main-and-tests.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/error-handling-and-panics/../../../rust-by-example/error/result.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../book/ch09-02-recoverable-errors-with-result.html' in chapter '$ROOT/book/pdf/src/rust-2018/error-handling-and-panics/the-question-mark-operator-for-easier-error-handling.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/error-handling-and-panics/../../../book/ch09-02-recoverable-errors-with-result.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../reference/macros-by-example.html' in chapter '$ROOT/book/pdf/src/rust-2018/macros/at-most-once.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/macros/../../../reference/macros-by-example.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../book/ch19-06-macros.html' in chapter '$ROOT/book/pdf/src/rust-2018/macros/custom-derive.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/macros/../../../book/ch19-06-macros.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../book/ch19-06-macros.html' in chapter '$ROOT/book/pdf/src/rust-2018/macros/index.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/macros/../../../book/ch19-06-macros.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../book/ch19-06-macros.html' in chapter '$ROOT/book/pdf/src/rust-2018/macros/macro-changes.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/macros/../../../book/ch19-06-macros.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../reference/visibility-and-privacy.html' in chapter '$ROOT/book/pdf/src/rust-2018/module-system/more-visibility-modifiers.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/module-system/../../../reference/visibility-and-privacy.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../rust-by-example/mod/use.html' in chapter '$ROOT/book/pdf/src/rust-2018/module-system/nested-imports-with-use.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/module-system/../../../rust-by-example/mod/use.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../rust-by-example/compatibility/raw_identifiers.html' in chapter '$ROOT/book/pdf/src/rust-2018/module-system/raw-identifiers.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/module-system/../../../rust-by-example/compatibility/raw_identifiers.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../book/ch04-00-understanding-ownership.html' in chapter '$ROOT/book/pdf/src/rust-2018/ownership-and-lifetimes/index.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/ownership-and-lifetimes/../../../book/ch04-00-understanding-ownership.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../reference/lifetime-elision.html' in chapter '$ROOT/book/pdf/src/rust-2018/ownership-and-lifetimes/simpler-lifetimes-in-static-and-const.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/ownership-and-lifetimes/../../../reference/lifetime-elision.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../rustc/targets/index.html' in chapter '$ROOT/book/pdf/src/rust-2018/platform-and-target-support/index.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/platform-and-target-support/../../../rustc/targets/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../core/index.html' in chapter '$ROOT/book/pdf/src/rust-2018/platform-and-target-support/libcore-for-low-level-rust.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/platform-and-target-support/../../../core/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../rustc/platform-support.html' in chapter '$ROOT/book/pdf/src/rust-2018/platform-and-target-support/msvc-toolchain-support.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/platform-and-target-support/../../../rustc/platform-support.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../rustc/platform-support.html' in chapter '$ROOT/book/pdf/src/rust-2018/platform-and-target-support/musl-support-for-fully-static-binaries.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/platform-and-target-support/../../../rustc/platform-support.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../rustdoc/documentation-tests.html' in chapter '$ROOT/book/pdf/src/rust-2018/rustdoc/documentation-tests-can-now-compile-fail.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/rustdoc/../../../rustdoc/documentation-tests.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../rustdoc/index.html' in chapter '$ROOT/book/pdf/src/rust-2018/rustdoc/index.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/rustdoc/../../../rustdoc/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../rustdoc/how-to-write-documentation.html' in chapter '$ROOT/book/pdf/src/rust-2018/rustdoc/rustdoc-uses-commonmark.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/rustdoc/../../../rustdoc/how-to-write-documentation.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../reference/attributes/diagnostics.html' in chapter '$ROOT/book/pdf/src/rust-2018/the-compiler/an-attribute-for-deprecation.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/the-compiler/../../../reference/attributes/diagnostics.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../../reference/items/associated-items.html' in chapter '$ROOT/book/pdf/src/rust-2018/trait-system/associated-constants.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-2018/trait-system/../../../reference/items/associated-items.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../cargo/commands/cargo-vendor.html' in chapter '$ROOT/book/pdf/src/rust-next/cargo-vendor.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-next/../../cargo/commands/cargo-vendor.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/const_eval.html' in chapter '$ROOT/book/pdf/src/rust-next/const-fn.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-next/../../reference/const_eval.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/macro.dbg.html' in chapter '$ROOT/book/pdf/src/rust-next/dbg-macro.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-next/../../std/macro.dbg.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/future/trait.Future.html' in chapter '$ROOT/book/pdf/src/rust-next/future.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-next/../../std/future/trait.Future.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/pin/index.html' in chapter '$ROOT/book/pdf/src/rust-next/pin.html', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/$ROOT/book/pdf/src/rust-next/../../std/pin/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../cargo/commands/cargo-fix.html' in chapter 'editions/transitioning-an-existing-project-to-a-new-edition.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/editions/../../cargo/commands/cargo-fix.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../cargo/commands/cargo-test.html' in chapter 'editions/transitioning-an-existing-project-to-a-new-edition.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/editions/../../cargo/commands/cargo-test.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../cargo/commands/cargo-fix.html' in chapter 'editions/advanced-migrations.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/editions/../../cargo/commands/cargo-fix.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../cargo/commands/cargo-check.html' in chapter 'editions/advanced-migrations.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/editions/../../cargo/commands/cargo-check.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/lints/index.html' in chapter 'editions/advanced-migrations.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/editions/../../rustc/lints/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/lints/groups.html' in chapter 'editions/advanced-migrations.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/editions/../../rustc/lints/groups.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../cargo/reference/features.html' in chapter 'editions/advanced-migrations.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/editions/../../cargo/reference/features.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/conditional-compilation.html' in chapter 'editions/advanced-migrations.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/editions/../../reference/conditional-compilation.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../cargo/reference/workspaces.html' in chapter 'editions/advanced-migrations.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/editions/../../cargo/reference/workspaces.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../cargo/reference/manifest.html' in chapter 'editions/advanced-migrations.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/editions/../../cargo/reference/manifest.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../cargo/reference/cargo-targets.html' in chapter 'editions/advanced-migrations.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/editions/../../cargo/reference/cargo-targets.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/lints/listing/allowed-by-default.html' in chapter 'editions/advanced-migrations.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/editions/../../rustc/lints/listing/allowed-by-default.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/lints/groups.html' in chapter 'editions/advanced-migrations.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/editions/../../rustc/lints/groups.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/procedural-macros.html' in chapter 'editions/advanced-migrations.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/editions/../../reference/procedural-macros.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustdoc/documentation-tests.html' in chapter 'editions/advanced-migrations.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/editions/../../rustdoc/documentation-tests.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustdoc/documentation-tests.html' in chapter 'editions/advanced-migrations.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/editions/../../rustdoc/documentation-tests.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../cargo/reference/build-script-examples.html' in chapter 'editions/advanced-migrations.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/editions/../../cargo/reference/build-script-examples.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/lints/groups.html' in chapter 'editions/advanced-migrations.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/editions/../../rustc/lints/groups.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/lints/levels.html' in chapter 'editions/advanced-migrations.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/editions/../../rustc/lints/levels.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/json.html' in chapter 'editions/advanced-migrations.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/editions/../../rustc/json.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/lints/listing/allowed-by-default.html' in chapter 'editions/advanced-migrations.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/editions/../../rustc/lints/listing/allowed-by-default.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/lints/listing/allowed-by-default.html' in chapter 'editions/advanced-migrations.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/editions/../../rustc/lints/listing/allowed-by-default.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/index.html' in chapter 'rust-2018/path-changes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2018/../../std/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/names/preludes.html' in chapter 'rust-2018/path-changes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2018/../../reference/names/preludes.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../core/index.html' in chapter 'rust-2018/path-changes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2018/../../core/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../proc_macro/index.html' in chapter 'rust-2018/path-changes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2018/../../proc_macro/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../alloc/index.html' in chapter 'rust-2018/path-changes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2018/../../alloc/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../test/index.html' in chapter 'rust-2018/path-changes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2018/../../test/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../book/appendix-07-nightly-rust.html' in chapter 'rust-2018/path-changes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2018/../../book/appendix-07-nightly-rust.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rust-by-example/trait/impl_trait.html' in chapter 'rust-2018/new-keywords.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2018/../../rust-by-example/trait/impl_trait.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../cargo/reference/resolver.html' in chapter 'rust-2021/default-cargo-resolver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2021/../../cargo/reference/resolver.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../cargo/reference/workspaces.html' in chapter 'rust-2021/default-cargo-resolver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2021/../../cargo/reference/workspaces.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../cargo/reference/workspaces.html' in chapter 'rust-2021/default-cargo-resolver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2021/../../cargo/reference/workspaces.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../cargo/reference/resolver.html' in chapter 'rust-2021/default-cargo-resolver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2021/../../cargo/reference/resolver.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../cargo/commands/cargo-tree.html' in chapter 'rust-2021/default-cargo-resolver.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2021/../../cargo/commands/cargo-tree.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../core/ffi/struct.CStr.html' in chapter 'rust-2021/c-string-literals.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2021/../../core/ffi/struct.CStr.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../core/ffi/struct.CStr.html' in chapter 'rust-2021/c-string-literals.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2021/../../core/ffi/struct.CStr.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../reference/tokens.html' in chapter 'rust-2021/c-string-literals.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2021/../../reference/tokens.html' + INFO mdbook_pandoc::pandoc::renderer: Wrote output to book/pdf/book.pdf diff --git a/src/snapshots/mdbook_pandoc__tests__rust_embedded.snap b/src/snapshots/mdbook_pandoc__tests__rust_embedded.snap index 328942f..4bb377d 100644 --- a/src/snapshots/mdbook_pandoc__tests__rust_embedded.snap +++ b/src/snapshots/mdbook_pandoc__tests__rust_embedded.snap @@ -28,18 +28,8 @@ expression: logs `book__pdf__src__design-patterns__hal__gpiomd__c-pin-state' on $PAGE undefined on input $LINE. [WARNING] [makePDF] LaTeX Warning: There were undefined references. -[WARNING] Missing character: There is no 🦀 (U+1F980) (U+1F980) in font NotoSerif:mode=node;script -[WARNING] Missing character: There is no ✓ (U+2713) (U+2713) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ✓ (U+2713) (U+2713) in font NotoSerif:mode=node;script=l [WARNING] Missing character: There is no ✘ (U+2718) (U+2718) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ✓ (U+2713) (U+2713) in font NotoSerif:mode=node;script=l [WARNING] Missing character: There is no ✘ (U+2718) (U+2718) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ✓ (U+2713) (U+2713) in font NotoSerif:mode=node;script=l [WARNING] Missing character: There is no ✘ (U+2718) (U+2718) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ✓ (U+2713) (U+2713) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ✓ (U+2713) (U+2713) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ✓ (U+2713) (U+2713) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ✓ (U+2713) (U+2713) in font NotoSerif:mode=node;script=l [WARNING] Missing character: There is no ✘ (U+2718) (U+2718) in font NotoSerif:mode=node;script=l - INFO mdbook_pandoc::pandoc::renderer: Wrote output to book/pdf/book.pdf - + INFO mdbook_pandoc::pandoc::renderer: Wrote output to book/pdf/book.pdf diff --git a/src/snapshots/mdbook_pandoc__tests__rust_reference.snap b/src/snapshots/mdbook_pandoc__tests__rust_reference.snap index 1c9570b..54fb673 100644 --- a/src/snapshots/mdbook_pandoc__tests__rust_reference.snap +++ b/src/snapshots/mdbook_pandoc__tests__rust_reference.snap @@ -4,198 +4,197 @@ expression: logs --- INFO mdbook::book: Running the pandoc backend INFO mdbook_pandoc: Processing redirects in [output.html.redirect] - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/index.html' in chapter 'Introduction': Unable to canonicalize path: $ROOT/src/../std/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../book/index.html' in chapter 'Introduction': Unable to canonicalize path: $ROOT/src/../book/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/index.html' in chapter 'Introduction': Unable to canonicalize path: $ROOT/src/../std/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../rustc/index.html' in chapter 'Introduction': Unable to canonicalize path: $ROOT/src/../rustc/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../cargo/index.html' in chapter 'Introduction': Unable to canonicalize path: $ROOT/src/../cargo/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../cargo/reference/index.html' in chapter 'Introduction': Unable to canonicalize path: $ROOT/src/../cargo/reference/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../rustdoc/the-doc-attribute.html' in chapter 'Comments': Unable to canonicalize path: $ROOT/src/../rustdoc/the-doc-attribute.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../core/ffi/struct.CStr.html' in chapter 'Tokens': Unable to canonicalize path: $ROOT/src/../core/ffi/struct.CStr.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../cargo/reference/build-scripts.html' in chapter 'Procedural Macros': Unable to canonicalize path: $ROOT/src/../cargo/reference/build-scripts.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/macro.compile_error.html' in chapter 'Procedural Macros': Unable to canonicalize path: $ROOT/src/../std/macro.compile_error.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../proc_macro/index.html' in chapter 'Procedural Macros': Unable to canonicalize path: $ROOT/src/../proc_macro/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../proc_macro/struct.TokenStream.html' in chapter 'Procedural Macros': Unable to canonicalize path: $ROOT/src/../proc_macro/struct.TokenStream.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../proc_macro/struct.TokenStream.html' in chapter 'Procedural Macros': Unable to canonicalize path: $ROOT/src/../proc_macro/struct.TokenStream.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../proc_macro/struct.TokenStream.html' in chapter 'Procedural Macros': Unable to canonicalize path: $ROOT/src/../proc_macro/struct.TokenStream.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../proc_macro/struct.TokenStream.html' in chapter 'Procedural Macros': Unable to canonicalize path: $ROOT/src/../proc_macro/struct.TokenStream.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../proc_macro/struct.TokenStream.html' in chapter 'Procedural Macros': Unable to canonicalize path: $ROOT/src/../proc_macro/struct.TokenStream.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../proc_macro/struct.TokenStream.html' in chapter 'Procedural Macros': Unable to canonicalize path: $ROOT/src/../proc_macro/struct.TokenStream.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../proc_macro/struct.TokenStream.html' in chapter 'Procedural Macros': Unable to canonicalize path: $ROOT/src/../proc_macro/struct.TokenStream.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../proc_macro/struct.TokenStream.html' in chapter 'Procedural Macros': Unable to canonicalize path: $ROOT/src/../proc_macro/struct.TokenStream.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../proc_macro/struct.TokenStream.html' in chapter 'Procedural Macros': Unable to canonicalize path: $ROOT/src/../proc_macro/struct.TokenStream.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../proc_macro/struct.TokenStream.html' in chapter 'Procedural Macros': Unable to canonicalize path: $ROOT/src/../proc_macro/struct.TokenStream.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../proc_macro/struct.TokenStream.html' in chapter 'Procedural Macros': Unable to canonicalize path: $ROOT/src/../proc_macro/struct.TokenStream.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../proc_macro/enum.TokenTree.html' in chapter 'Procedural Macros': Unable to canonicalize path: $ROOT/src/../proc_macro/enum.TokenTree.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../proc_macro/struct.Group.html' in chapter 'Procedural Macros': Unable to canonicalize path: $ROOT/src/../proc_macro/struct.Group.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../proc_macro/enum.Delimiter.html#variant.None' in chapter 'Procedural Macros': Unable to canonicalize path: $ROOT/src/../proc_macro/enum.Delimiter.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../proc_macro/struct.Group.html' in chapter 'Procedural Macros': Unable to canonicalize path: $ROOT/src/../proc_macro/struct.Group.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../proc_macro/enum.Delimiter.html#variant.None' in chapter 'Procedural Macros': Unable to canonicalize path: $ROOT/src/../proc_macro/enum.Delimiter.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/process/trait.Termination.html' in chapter 'Crates and source files': Unable to canonicalize path: $ROOT/src/../std/process/trait.Termination.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/process/trait.Termination.html' in chapter 'Crates and source files': Unable to canonicalize path: $ROOT/src/../std/process/trait.Termination.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/convert/enum.Infallible.html' in chapter 'Crates and source files': Unable to canonicalize path: $ROOT/src/../std/convert/enum.Infallible.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/process/struct.ExitCode.html' in chapter 'Crates and source files': Unable to canonicalize path: $ROOT/src/../std/process/struct.ExitCode.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/primitive.char.html#method.is_alphanumeric' in chapter 'Crates and source files': Unable to canonicalize path: $ROOT/src/../std/primitive.char.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../rustc/command-line-arguments.html#--cfg-configure-the-compilation-environment' in chapter 'Conditional compilation': Unable to canonicalize path: $ROOT/src/../rustc/command-line-arguments.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../cargo/reference/features.html' in chapter 'Conditional compilation': Unable to canonicalize path: $ROOT/src/../cargo/reference/features.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../core/sync/atomic/index.html' in chapter 'Conditional compilation': Unable to canonicalize path: $ROOT/src/../core/sync/atomic/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../rustc/command-line-arguments.html#--test-build-a-test-harness' in chapter 'Conditional compilation': Unable to canonicalize path: $ROOT/src/../rustc/command-line-arguments.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/macro.debug_assert.html' in chapter 'Conditional compilation': Unable to canonicalize path: $ROOT/src/../std/macro.debug_assert.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../rustdoc/the-doc-attribute.html' in chapter 'Modules': Unable to canonicalize path: $ROOT/src/items/../../rustdoc/the-doc-attribute.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../rustdoc/the-doc-attribute.html' in chapter 'Functions': Unable to canonicalize path: $ROOT/src/items/../../rustdoc/the-doc-attribute.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/mem/fn.discriminant.html' in chapter 'Enumerations': Unable to canonicalize path: $ROOT/src/items/../../std/mem/fn.discriminant.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/mem/fn.transmute.html' in chapter 'Unions': Unable to canonicalize path: $ROOT/src/items/../../std/mem/fn.transmute.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../rustdoc/the-doc-attribute.html' in chapter 'Implementations': Unable to canonicalize path: $ROOT/src/items/../../rustdoc/the-doc-attribute.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../rustc/command-line-arguments.html#linking-modifiers-bundle' in chapter 'External blocks': Unable to canonicalize path: $ROOT/src/items/../../rustc/command-line-arguments.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../rustc/command-line-arguments.html#linking-modifiers-whole-archive' in chapter 'External blocks': Unable to canonicalize path: $ROOT/src/items/../../rustc/command-line-arguments.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../rustc/command-line-arguments.html#linking-modifiers-verbatim' in chapter 'External blocks': Unable to canonicalize path: $ROOT/src/items/../../rustc/command-line-arguments.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../rustdoc/the-doc-attribute.html' in chapter 'Attributes': Unable to canonicalize path: $ROOT/src/../rustdoc/the-doc-attribute.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../unstable-book/index.html' in chapter 'Attributes': Unable to canonicalize path: $ROOT/src/../unstable-book/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/process/trait.Termination.html' in chapter 'Testing': Unable to canonicalize path: $ROOT/src/attributes/../../std/process/trait.Termination.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/process/trait.Termination.html#tymethod.report' in chapter 'Testing': Unable to canonicalize path: $ROOT/src/attributes/../../std/process/trait.Termination.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/process/struct.ExitCode.html' in chapter 'Testing': Unable to canonicalize path: $ROOT/src/attributes/../../std/process/struct.ExitCode.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/cmp/trait.PartialEq.html' in chapter 'Derive': Unable to canonicalize path: $ROOT/src/attributes/../../std/cmp/trait.PartialEq.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/clone/trait.Clone.html' in chapter 'Derive': Unable to canonicalize path: $ROOT/src/attributes/../../std/clone/trait.Clone.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../rustc/lints/index.html' in chapter 'Diagnostics': Unable to canonicalize path: $ROOT/src/attributes/../../rustc/lints/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../rustc/lints/levels.html#via-compiler-flag' in chapter 'Diagnostics': Unable to canonicalize path: $ROOT/src/attributes/../../rustc/lints/levels.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../rustc/lints/levels.html#capping-lints' in chapter 'Diagnostics': Unable to canonicalize path: $ROOT/src/attributes/../../rustc/lints/levels.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../rustdoc/lints.html' in chapter 'Diagnostics': Unable to canonicalize path: $ROOT/src/attributes/../../rustdoc/lints.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/arch/macro.is_x86_feature_detected.html' in chapter 'Code generation': Unable to canonicalize path: $ROOT/src/attributes/../../std/arch/macro.is_x86_feature_detected.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/arch/macro.is_aarch64_feature_detected.html' in chapter 'Code generation': Unable to canonicalize path: $ROOT/src/attributes/../../std/arch/macro.is_aarch64_feature_detected.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../rustc/codegen-options/index.html#target-cpu' in chapter 'Code generation': Unable to canonicalize path: $ROOT/src/attributes/../../rustc/codegen-options/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../rustc/codegen-options/index.html#target-feature' in chapter 'Code generation': Unable to canonicalize path: $ROOT/src/attributes/../../rustc/codegen-options/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../core/panic/struct.Location.html' in chapter 'Code generation': Unable to canonicalize path: $ROOT/src/attributes/../../core/panic/struct.Location.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../core/panic/struct.Location.html' in chapter 'Code generation': Unable to canonicalize path: $ROOT/src/attributes/../../core/panic/struct.Location.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../core/panic/struct.Location.html#method.caller' in chapter 'Code generation': Unable to canonicalize path: $ROOT/src/attributes/../../core/panic/struct.Location.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../core/intrinsics/fn.caller_location.html' in chapter 'Code generation': Unable to canonicalize path: $ROOT/src/attributes/../../core/intrinsics/fn.caller_location.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/boxed/struct.Box.html' in chapter 'Expressions': Unable to canonicalize path: $ROOT/src/../std/boxed/struct.Box.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../core/primitive.u128.md#method.from_str_radix' in chapter 'Literal expressions': Unable to canonicalize path: $ROOT/src/expressions/../../core/primitive.u128.md: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../core/primitive.f32.md#method.from_str' in chapter 'Literal expressions': Unable to canonicalize path: $ROOT/src/expressions/../../core/primitive.f32.md: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../core/primitive.f64.md#method.from_str' in chapter 'Literal expressions': Unable to canonicalize path: $ROOT/src/expressions/../../core/primitive.f64.md: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../core/primitive.f32.md#associatedconstant.INFINITY' in chapter 'Literal expressions': Unable to canonicalize path: $ROOT/src/expressions/../../core/primitive.f32.md: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../core/primitive.f64.md#associatedconstant.INFINITY' in chapter 'Literal expressions': Unable to canonicalize path: $ROOT/src/expressions/../../core/primitive.f64.md: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../core/primitive.f32.md#associatedconstant.NAN' in chapter 'Literal expressions': Unable to canonicalize path: $ROOT/src/expressions/../../core/primitive.f32.md: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../core/primitive.f64.md#associatedconstant.NAN' in chapter 'Literal expressions': Unable to canonicalize path: $ROOT/src/expressions/../../core/primitive.f64.md: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/ops/trait.Fn.html' in chapter 'Block expressions': Unable to canonicalize path: $ROOT/src/expressions/../../std/ops/trait.Fn.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/future/trait.Future.html' in chapter 'Block expressions': Unable to canonicalize path: $ROOT/src/expressions/../../std/future/trait.Future.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/ptr/macro.addr_of.html' in chapter 'Operator expressions': Unable to canonicalize path: $ROOT/src/expressions/../../std/ptr/macro.addr_of.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/ptr/macro.addr_of_mut.html' in chapter 'Operator expressions': Unable to canonicalize path: $ROOT/src/expressions/../../std/ptr/macro.addr_of_mut.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/ops/trait.Index.html' in chapter 'Array and index expressions': Unable to canonicalize path: $ROOT/src/expressions/../../std/ops/trait.Index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/ops/trait.IndexMut.html' in chapter 'Array and index expressions': Unable to canonicalize path: $ROOT/src/expressions/../../std/ops/trait.IndexMut.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/ops/trait.Fn.html' in chapter 'Call expressions': Unable to canonicalize path: $ROOT/src/expressions/../../std/ops/trait.Fn.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/ops/trait.FnMut.html' in chapter 'Call expressions': Unable to canonicalize path: $ROOT/src/expressions/../../std/ops/trait.FnMut.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/ops/trait.FnOnce.html' in chapter 'Call expressions': Unable to canonicalize path: $ROOT/src/expressions/../../std/ops/trait.FnOnce.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/default/trait.Default.html#tymethod.default' in chapter 'Call expressions': Unable to canonicalize path: $ROOT/src/expressions/../../std/default/trait.Default.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/mem/fn.size_of.html' in chapter 'Call expressions': Unable to canonicalize path: $ROOT/src/expressions/../../std/mem/fn.size_of.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/iter/trait.IntoIterator.html' in chapter 'Method call expressions': Unable to canonicalize path: $ROOT/src/expressions/../../std/iter/trait.IntoIterator.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/future/trait.IntoFuture.html' in chapter 'Await expressions': Unable to canonicalize path: $ROOT/src/expressions/../../std/future/trait.IntoFuture.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/future/trait.IntoFuture.html#tymethod.into_future' in chapter 'Await expressions': Unable to canonicalize path: $ROOT/src/expressions/../../std/future/trait.IntoFuture.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/future/trait.Future.html' in chapter 'Await expressions': Unable to canonicalize path: $ROOT/src/expressions/../../std/future/trait.Future.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/pin/struct.Pin.html#method.new_unchecked' in chapter 'Await expressions': Unable to canonicalize path: $ROOT/src/expressions/../../std/pin/struct.Pin.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/future/trait.Future.html#tymethod.poll' in chapter 'Await expressions': Unable to canonicalize path: $ROOT/src/expressions/../../std/future/trait.Future.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/task/enum.Poll.html#variant.Pending' in chapter 'Await expressions': Unable to canonicalize path: $ROOT/src/expressions/../../std/task/enum.Poll.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/task/enum.Poll.html#variant.Ready' in chapter 'Await expressions': Unable to canonicalize path: $ROOT/src/expressions/../../std/task/enum.Poll.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/task/enum.Poll.html#variant.Ready' in chapter 'Await expressions': Unable to canonicalize path: $ROOT/src/expressions/../../std/task/enum.Poll.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/task/struct.Context.html' in chapter 'Await expressions': Unable to canonicalize path: $ROOT/src/expressions/../../std/task/struct.Context.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/primitive.bool.html' in chapter 'Boolean type': Unable to canonicalize path: $ROOT/src/types/../../std/primitive.bool.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/vec/struct.Vec.html' in chapter 'Array types': Unable to canonicalize path: $ROOT/src/types/../../std/vec/struct.Vec.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/ops/trait.Fn.html' in chapter 'Function item types': Unable to canonicalize path: $ROOT/src/types/../../std/ops/trait.Fn.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/ops/trait.FnMut.html' in chapter 'Function item types': Unable to canonicalize path: $ROOT/src/types/../../std/ops/trait.FnMut.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/ops/trait.FnOnce.html' in chapter 'Function item types': Unable to canonicalize path: $ROOT/src/types/../../std/ops/trait.FnOnce.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/ops/trait.FnOnce.html' in chapter 'Closure types': Unable to canonicalize path: $ROOT/src/types/../../std/ops/trait.FnOnce.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/ops/trait.FnMut.html' in chapter 'Closure types': Unable to canonicalize path: $ROOT/src/types/../../std/ops/trait.FnMut.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/ops/trait.Fn.html' in chapter 'Closure types': Unable to canonicalize path: $ROOT/src/types/../../std/ops/trait.Fn.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/ops/trait.Fn.html' in chapter 'Closure types': Unable to canonicalize path: $ROOT/src/types/../../std/ops/trait.Fn.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/ops/trait.FnMut.html' in chapter 'Closure types': Unable to canonicalize path: $ROOT/src/types/../../std/ops/trait.FnMut.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../core/ptr/macro.addr_of.html' in chapter 'Pointer types': Unable to canonicalize path: $ROOT/src/types/../../core/ptr/macro.addr_of.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../core/ptr/macro.addr_of_mut.html' in chapter 'Pointer types': Unable to canonicalize path: $ROOT/src/types/../../core/ptr/macro.addr_of_mut.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/mem/fn.align_of_val.html' in chapter 'Type layout': Unable to canonicalize path: $ROOT/src/../std/mem/fn.align_of_val.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/mem/fn.size_of_val.html' in chapter 'Type layout': Unable to canonicalize path: $ROOT/src/../std/mem/fn.size_of_val.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/marker/trait.Sized.html' in chapter 'Type layout': Unable to canonicalize path: $ROOT/src/../std/marker/trait.Sized.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/mem/fn.size_of.html' in chapter 'Type layout': Unable to canonicalize path: $ROOT/src/../std/mem/fn.size_of.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/mem/fn.align_of.html' in chapter 'Type layout': Unable to canonicalize path: $ROOT/src/../std/mem/fn.align_of.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/marker/trait.Sized.html' in chapter 'Type layout': Unable to canonicalize path: $ROOT/src/../std/marker/trait.Sized.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/alloc/struct.Layout.html' in chapter 'Type layout': Unable to canonicalize path: $ROOT/src/../std/alloc/struct.Layout.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/cell/struct.UnsafeCell.html' in chapter 'Interior mutability': Unable to canonicalize path: $ROOT/src/../std/cell/struct.UnsafeCell.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/cell/struct.RefCell.html' in chapter 'Interior mutability': Unable to canonicalize path: $ROOT/src/../std/cell/struct.RefCell.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/sync/atomic/index.html' in chapter 'Interior mutability': Unable to canonicalize path: $ROOT/src/../std/sync/atomic/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../nomicon/hrtb.html' in chapter 'Subtyping and Variance': Unable to canonicalize path: $ROOT/src/../nomicon/hrtb.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/marker/trait.Unsize.html' in chapter 'Type coercions': Unable to canonicalize path: $ROOT/src/../std/marker/trait.Unsize.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/ops/trait.CoerceUnsized.html' in chapter 'Type coercions': Unable to canonicalize path: $ROOT/src/../std/ops/trait.CoerceUnsized.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/ops/trait.Drop.html#tymethod.drop' in chapter 'Destructors': Unable to canonicalize path: $ROOT/src/../std/ops/trait.Drop.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/ptr/fn.drop_in_place.html' in chapter 'Destructors': Unable to canonicalize path: $ROOT/src/../std/ptr/fn.drop_in_place.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/mem/fn.forget.html' in chapter 'Destructors': Unable to canonicalize path: $ROOT/src/../std/mem/fn.forget.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/mem/struct.ManuallyDrop.html' in chapter 'Destructors': Unable to canonicalize path: $ROOT/src/../std/mem/struct.ManuallyDrop.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/mem/fn.forget.html' in chapter 'Destructors': Unable to canonicalize path: $ROOT/src/../std/mem/fn.forget.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/index.html' in chapter 'Special types and traits': Unable to canonicalize path: $ROOT/src/../std/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/boxed/struct.Box.html' in chapter 'Special types and traits': Unable to canonicalize path: $ROOT/src/../std/boxed/struct.Box.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/rc/struct.Rc.html' in chapter 'Special types and traits': Unable to canonicalize path: $ROOT/src/../std/rc/struct.Rc.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/sync/struct.Arc.html' in chapter 'Special types and traits': Unable to canonicalize path: $ROOT/src/../std/sync/struct.Arc.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/pin/struct.Pin.html' in chapter 'Special types and traits': Unable to canonicalize path: $ROOT/src/../std/pin/struct.Pin.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/cell/struct.UnsafeCell.html' in chapter 'Special types and traits': Unable to canonicalize path: $ROOT/src/../std/cell/struct.UnsafeCell.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/marker/struct.PhantomData.html' in chapter 'Special types and traits': Unable to canonicalize path: $ROOT/src/../std/marker/struct.PhantomData.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../nomicon/dropck.html' in chapter 'Special types and traits': Unable to canonicalize path: $ROOT/src/../nomicon/dropck.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/ops/index.html' in chapter 'Special types and traits': Unable to canonicalize path: $ROOT/src/../std/ops/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/cmp/index.html' in chapter 'Special types and traits': Unable to canonicalize path: $ROOT/src/../std/cmp/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/ops/trait.Deref.html' in chapter 'Special types and traits': Unable to canonicalize path: $ROOT/src/../std/ops/trait.Deref.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/ops/trait.DerefMut.html' in chapter 'Special types and traits': Unable to canonicalize path: $ROOT/src/../std/ops/trait.DerefMut.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/ops/trait.Drop.html' in chapter 'Special types and traits': Unable to canonicalize path: $ROOT/src/../std/ops/trait.Drop.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/marker/trait.Copy.html' in chapter 'Special types and traits': Unable to canonicalize path: $ROOT/src/../std/marker/trait.Copy.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/clone/trait.Clone.html' in chapter 'Special types and traits': Unable to canonicalize path: $ROOT/src/../std/clone/trait.Clone.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/marker/trait.Send.html' in chapter 'Special types and traits': Unable to canonicalize path: $ROOT/src/../std/marker/trait.Send.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/marker/trait.Sync.html' in chapter 'Special types and traits': Unable to canonicalize path: $ROOT/src/../std/marker/trait.Sync.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/process/trait.Termination.html' in chapter 'Special types and traits': Unable to canonicalize path: $ROOT/src/../std/process/trait.Termination.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/marker/trait.Send.html' in chapter 'Special types and traits': Unable to canonicalize path: $ROOT/src/../std/marker/trait.Send.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/marker/trait.Sync.html' in chapter 'Special types and traits': Unable to canonicalize path: $ROOT/src/../std/marker/trait.Sync.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/marker/trait.Unpin.html' in chapter 'Special types and traits': Unable to canonicalize path: $ROOT/src/../std/marker/trait.Unpin.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/panic/trait.UnwindSafe.html' in chapter 'Special types and traits': Unable to canonicalize path: $ROOT/src/../std/panic/trait.UnwindSafe.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/panic/trait.RefUnwindSafe.html' in chapter 'Special types and traits': Unable to canonicalize path: $ROOT/src/../std/panic/trait.RefUnwindSafe.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/marker/trait.Sized.html' in chapter 'Special types and traits': Unable to canonicalize path: $ROOT/src/../std/marker/trait.Sized.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/boxed/struct.Box.html' in chapter 'Preludes': Unable to canonicalize path: $ROOT/src/names/../../std/boxed/struct.Box.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/prelude/rust_2015/index.html' in chapter 'Preludes': Unable to canonicalize path: $ROOT/src/names/../../std/prelude/rust_2015/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../core/prelude/rust_2015/index.html' in chapter 'Preludes': Unable to canonicalize path: $ROOT/src/names/../../core/prelude/rust_2015/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/prelude/rust_2018/index.html' in chapter 'Preludes': Unable to canonicalize path: $ROOT/src/names/../../std/prelude/rust_2018/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../core/prelude/rust_2018/index.html' in chapter 'Preludes': Unable to canonicalize path: $ROOT/src/names/../../core/prelude/rust_2018/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/prelude/rust_2021/index.html' in chapter 'Preludes': Unable to canonicalize path: $ROOT/src/names/../../std/prelude/rust_2021/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../core/prelude/rust_2021/index.html' in chapter 'Preludes': Unable to canonicalize path: $ROOT/src/names/../../core/prelude/rust_2021/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/prelude/rust_2015/index.html' in chapter 'Preludes': Unable to canonicalize path: $ROOT/src/names/../../std/prelude/rust_2015/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/prelude/rust_2018/index.html' in chapter 'Preludes': Unable to canonicalize path: $ROOT/src/names/../../std/prelude/rust_2018/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/prelude/v1/index.html' in chapter 'Preludes': Unable to canonicalize path: $ROOT/src/names/../../std/prelude/v1/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../core/prelude/rust_2015/index.html' in chapter 'Preludes': Unable to canonicalize path: $ROOT/src/names/../../core/prelude/rust_2015/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../core/prelude/rust_2018/index.html' in chapter 'Preludes': Unable to canonicalize path: $ROOT/src/names/../../core/prelude/rust_2018/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../core/prelude/v1/index.html' in chapter 'Preludes': Unable to canonicalize path: $ROOT/src/names/../../core/prelude/v1/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../core/index.html' in chapter 'Preludes': Unable to canonicalize path: $ROOT/src/names/../../core/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/index.html' in chapter 'Preludes': Unable to canonicalize path: $ROOT/src/names/../../std/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../alloc/index.html' in chapter 'Preludes': Unable to canonicalize path: $ROOT/src/names/../../alloc/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../test/index.html' in chapter 'Preludes': Unable to canonicalize path: $ROOT/src/names/../../test/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/index.html' in chapter 'Preludes': Unable to canonicalize path: $ROOT/src/names/../../std/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../core/index.html' in chapter 'Preludes': Unable to canonicalize path: $ROOT/src/names/../../core/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/index.html' in chapter 'Preludes': Unable to canonicalize path: $ROOT/src/names/../../std/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/index.html' in chapter 'Preludes': Unable to canonicalize path: $ROOT/src/names/../../std/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../core/index.html' in chapter 'Preludes': Unable to canonicalize path: $ROOT/src/names/../../core/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../../std/index.html' in chapter 'Preludes': Unable to canonicalize path: $ROOT/src/names/../../std/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../book/ch19-01-unsafe-rust.html#using-extern-functions-to-call-external-code' in chapter 'Linkage': Unable to canonicalize path: $ROOT/src/../book/ch19-01-unsafe-rust.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../cargo/reference/environment-variables.html#environment-variables-cargo-sets-for-build-scripts' in chapter 'Linkage': Unable to canonicalize path: $ROOT/src/../cargo/reference/environment-variables.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../core/arch/macro.asm.html' in chapter 'Inline assembly': Unable to canonicalize path: $ROOT/src/../core/arch/macro.asm.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../core/arch/macro.global_asm.html' in chapter 'Inline assembly': Unable to canonicalize path: $ROOT/src/../core/arch/macro.global_asm.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/fmt/index.html#syntax' in chapter 'Inline assembly': Unable to canonicalize path: $ROOT/src/../std/fmt/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../rustc/lints/listing/allowed-by-default.html#unsafe-op-in-unsafe-fn' in chapter 'The unsafe keyword': Unable to canonicalize path: $ROOT/src/../rustc/lints/listing/allowed-by-default.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/keyword.unsafe.html' in chapter 'The unsafe keyword': Unable to canonicalize path: $ROOT/src/../std/keyword.unsafe.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/primitive.slice.html#method.get_unchecked' in chapter 'The unsafe keyword': Unable to canonicalize path: $ROOT/src/../std/primitive.slice.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../rustc/lints/listing/allowed-by-default.html#unsafe-op-in-unsafe-fn' in chapter 'The unsafe keyword': Unable to canonicalize path: $ROOT/src/../rustc/lints/listing/allowed-by-default.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../rustc/lints/listing/allowed-by-default.html#unsafe-op-in-unsafe-fn' in chapter 'The unsafe keyword': Unable to canonicalize path: $ROOT/src/../rustc/lints/listing/allowed-by-default.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../nomicon/index.html' in chapter 'Behavior considered undefined': Unable to canonicalize path: $ROOT/src/../nomicon/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/primitive.pointer.html#method.offset' in chapter 'Behavior considered undefined': Unable to canonicalize path: $ROOT/src/../std/primitive.pointer.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/cell/struct.UnsafeCell.html' in chapter 'Behavior considered undefined': Unable to canonicalize path: $ROOT/src/../std/cell/struct.UnsafeCell.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/cell/struct.UnsafeCell.html' in chapter 'Behavior considered undefined': Unable to canonicalize path: $ROOT/src/../std/cell/struct.UnsafeCell.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/cell/struct.UnsafeCell.html' in chapter 'Behavior considered undefined': Unable to canonicalize path: $ROOT/src/../std/cell/struct.UnsafeCell.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../core/ptr/struct.NonNull.html' in chapter 'Behavior considered undefined': Unable to canonicalize path: $ROOT/src/../core/ptr/struct.NonNull.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../core/num/index.html' in chapter 'Behavior considered undefined': Unable to canonicalize path: $ROOT/src/../core/num/index.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../core/panic/struct.PanicInfo.html' in chapter 'The Rust runtime': Unable to canonicalize path: $ROOT/src/../core/panic/struct.PanicInfo.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../book/ch09-01-unrecoverable-errors-with-panic.html' in chapter 'The Rust runtime': Unable to canonicalize path: $ROOT/src/../book/ch09-01-unrecoverable-errors-with-panic.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../std/panic/fn.set_hook.html' in chapter 'The Rust runtime': Unable to canonicalize path: $ROOT/src/../std/panic/fn.set_hook.html: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link '../alloc/alloc/trait.GlobalAlloc.html' in chapter 'The Rust runtime': Unable to canonicalize path: $ROOT/src/../alloc/alloc/trait.GlobalAlloc.html: No such file or directory (os error 2) - WARN mdbook_pandoc: Unable to resolve one or more relative links within the book, consider setting the `hosted-html` option in `[output.pandoc]` + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/index.html' in chapter 'introduction.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../book/index.html' in chapter 'introduction.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../book/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/index.html' in chapter 'introduction.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../rustc/index.html' in chapter 'introduction.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../rustc/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../cargo/index.html' in chapter 'introduction.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../cargo/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../cargo/reference/index.html' in chapter 'introduction.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../cargo/reference/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../rustdoc/the-doc-attribute.html' in chapter 'comments.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../rustdoc/the-doc-attribute.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../core/ffi/struct.CStr.html' in chapter 'tokens.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/ffi/struct.CStr.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../cargo/reference/build-scripts.html' in chapter 'procedural-macros.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../cargo/reference/build-scripts.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/macro.compile_error.html' in chapter 'procedural-macros.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/macro.compile_error.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../proc_macro/index.html' in chapter 'procedural-macros.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../proc_macro/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../proc_macro/struct.TokenStream.html' in chapter 'procedural-macros.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../proc_macro/struct.TokenStream.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../proc_macro/struct.TokenStream.html' in chapter 'procedural-macros.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../proc_macro/struct.TokenStream.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../proc_macro/struct.TokenStream.html' in chapter 'procedural-macros.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../proc_macro/struct.TokenStream.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../proc_macro/struct.TokenStream.html' in chapter 'procedural-macros.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../proc_macro/struct.TokenStream.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../proc_macro/struct.TokenStream.html' in chapter 'procedural-macros.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../proc_macro/struct.TokenStream.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../proc_macro/struct.TokenStream.html' in chapter 'procedural-macros.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../proc_macro/struct.TokenStream.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../proc_macro/struct.TokenStream.html' in chapter 'procedural-macros.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../proc_macro/struct.TokenStream.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../proc_macro/struct.TokenStream.html' in chapter 'procedural-macros.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../proc_macro/struct.TokenStream.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../proc_macro/struct.TokenStream.html' in chapter 'procedural-macros.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../proc_macro/struct.TokenStream.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../proc_macro/struct.TokenStream.html' in chapter 'procedural-macros.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../proc_macro/struct.TokenStream.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../proc_macro/struct.TokenStream.html' in chapter 'procedural-macros.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../proc_macro/struct.TokenStream.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../proc_macro/enum.TokenTree.html' in chapter 'procedural-macros.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../proc_macro/enum.TokenTree.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../proc_macro/struct.Group.html' in chapter 'procedural-macros.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../proc_macro/struct.Group.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../proc_macro/enum.Delimiter.html' in chapter 'procedural-macros.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../proc_macro/enum.Delimiter.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../proc_macro/struct.Group.html' in chapter 'procedural-macros.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../proc_macro/struct.Group.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../proc_macro/enum.Delimiter.html' in chapter 'procedural-macros.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../proc_macro/enum.Delimiter.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/process/trait.Termination.html' in chapter 'crates-and-source-files.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/process/trait.Termination.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/process/trait.Termination.html' in chapter 'crates-and-source-files.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/process/trait.Termination.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/convert/enum.Infallible.html' in chapter 'crates-and-source-files.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/convert/enum.Infallible.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/process/struct.ExitCode.html' in chapter 'crates-and-source-files.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/process/struct.ExitCode.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/primitive.char.html' in chapter 'crates-and-source-files.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/primitive.char.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../rustc/command-line-arguments.html' in chapter 'conditional-compilation.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../rustc/command-line-arguments.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../cargo/reference/features.html' in chapter 'conditional-compilation.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../cargo/reference/features.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../core/sync/atomic/index.html' in chapter 'conditional-compilation.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/sync/atomic/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../rustc/command-line-arguments.html' in chapter 'conditional-compilation.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../rustc/command-line-arguments.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/macro.debug_assert.html' in chapter 'conditional-compilation.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/macro.debug_assert.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustdoc/the-doc-attribute.html' in chapter 'items/modules.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/items/../../rustdoc/the-doc-attribute.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustdoc/the-doc-attribute.html' in chapter 'items/functions.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/items/../../rustdoc/the-doc-attribute.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/mem/fn.discriminant.html' in chapter 'items/enumerations.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/items/../../std/mem/fn.discriminant.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/mem/fn.transmute.html' in chapter 'items/unions.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/items/../../std/mem/fn.transmute.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustdoc/the-doc-attribute.html' in chapter 'items/implementations.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/items/../../rustdoc/the-doc-attribute.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/command-line-arguments.html' in chapter 'items/external-blocks.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/items/../../rustc/command-line-arguments.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/command-line-arguments.html' in chapter 'items/external-blocks.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/items/../../rustc/command-line-arguments.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/command-line-arguments.html' in chapter 'items/external-blocks.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/items/../../rustc/command-line-arguments.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../rustdoc/the-doc-attribute.html' in chapter 'attributes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../rustdoc/the-doc-attribute.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../unstable-book/index.html' in chapter 'attributes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../unstable-book/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/process/trait.Termination.html' in chapter 'attributes/testing.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../std/process/trait.Termination.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/process/trait.Termination.html' in chapter 'attributes/testing.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../std/process/trait.Termination.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/process/struct.ExitCode.html' in chapter 'attributes/testing.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../std/process/struct.ExitCode.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/cmp/trait.PartialEq.html' in chapter 'attributes/derive.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../std/cmp/trait.PartialEq.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/clone/trait.Clone.html' in chapter 'attributes/derive.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../std/clone/trait.Clone.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/lints/index.html' in chapter 'attributes/diagnostics.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../rustc/lints/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/lints/levels.html' in chapter 'attributes/diagnostics.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../rustc/lints/levels.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/lints/levels.html' in chapter 'attributes/diagnostics.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../rustc/lints/levels.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustdoc/lints.html' in chapter 'attributes/diagnostics.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../rustdoc/lints.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/arch/macro.is_x86_feature_detected.html' in chapter 'attributes/codegen.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../std/arch/macro.is_x86_feature_detected.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/arch/macro.is_aarch64_feature_detected.html' in chapter 'attributes/codegen.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../std/arch/macro.is_aarch64_feature_detected.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.html' in chapter 'attributes/codegen.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../rustc/codegen-options/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../rustc/codegen-options/index.html' in chapter 'attributes/codegen.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../rustc/codegen-options/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../core/panic/struct.Location.html' in chapter 'attributes/codegen.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../core/panic/struct.Location.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../core/panic/struct.Location.html' in chapter 'attributes/codegen.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../core/panic/struct.Location.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../core/panic/struct.Location.html' in chapter 'attributes/codegen.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../core/panic/struct.Location.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../core/intrinsics/fn.caller_location.html' in chapter 'attributes/codegen.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../core/intrinsics/fn.caller_location.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/boxed/struct.Box.html' in chapter 'expressions.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/boxed/struct.Box.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../core/primitive.u128.md' in chapter 'expressions/literal-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/primitive.u128.md' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../core/primitive.f32.md' in chapter 'expressions/literal-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/primitive.f32.md' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../core/primitive.f64.md' in chapter 'expressions/literal-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/primitive.f64.md' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../core/primitive.f32.md' in chapter 'expressions/literal-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/primitive.f32.md' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../core/primitive.f64.md' in chapter 'expressions/literal-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/primitive.f64.md' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../core/primitive.f32.md' in chapter 'expressions/literal-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/primitive.f32.md' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../core/primitive.f64.md' in chapter 'expressions/literal-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/primitive.f64.md' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/ops/trait.Fn.html' in chapter 'expressions/block-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/ops/trait.Fn.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/future/trait.Future.html' in chapter 'expressions/block-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/future/trait.Future.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/ptr/macro.addr_of.html' in chapter 'expressions/operator-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/ptr/macro.addr_of.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/ptr/macro.addr_of_mut.html' in chapter 'expressions/operator-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/ptr/macro.addr_of_mut.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/ops/trait.Index.html' in chapter 'expressions/array-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/ops/trait.Index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/ops/trait.IndexMut.html' in chapter 'expressions/array-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/ops/trait.IndexMut.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/ops/trait.Fn.html' in chapter 'expressions/call-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/ops/trait.Fn.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/ops/trait.FnMut.html' in chapter 'expressions/call-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/ops/trait.FnMut.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/ops/trait.FnOnce.html' in chapter 'expressions/call-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/ops/trait.FnOnce.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/default/trait.Default.html' in chapter 'expressions/call-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/default/trait.Default.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/mem/fn.size_of.html' in chapter 'expressions/call-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/mem/fn.size_of.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/iter/trait.IntoIterator.html' in chapter 'expressions/method-call-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/iter/trait.IntoIterator.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/future/trait.IntoFuture.html' in chapter 'expressions/await-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/future/trait.IntoFuture.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/future/trait.IntoFuture.html' in chapter 'expressions/await-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/future/trait.IntoFuture.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/future/trait.Future.html' in chapter 'expressions/await-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/future/trait.Future.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/pin/struct.Pin.html' in chapter 'expressions/await-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/pin/struct.Pin.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/future/trait.Future.html' in chapter 'expressions/await-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/future/trait.Future.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/task/enum.Poll.html' in chapter 'expressions/await-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/task/enum.Poll.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/task/enum.Poll.html' in chapter 'expressions/await-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/task/enum.Poll.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/task/enum.Poll.html' in chapter 'expressions/await-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/task/enum.Poll.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/task/struct.Context.html' in chapter 'expressions/await-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/task/struct.Context.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/primitive.bool.html' in chapter 'types/boolean.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/types/../../std/primitive.bool.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/vec/struct.Vec.html' in chapter 'types/array.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/types/../../std/vec/struct.Vec.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/ops/trait.Fn.html' in chapter 'types/function-item.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/types/../../std/ops/trait.Fn.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/ops/trait.FnMut.html' in chapter 'types/function-item.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/types/../../std/ops/trait.FnMut.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/ops/trait.FnOnce.html' in chapter 'types/function-item.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/types/../../std/ops/trait.FnOnce.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/ops/trait.FnOnce.html' in chapter 'types/closure.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/types/../../std/ops/trait.FnOnce.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/ops/trait.FnMut.html' in chapter 'types/closure.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/types/../../std/ops/trait.FnMut.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/ops/trait.Fn.html' in chapter 'types/closure.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/types/../../std/ops/trait.Fn.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/ops/trait.Fn.html' in chapter 'types/closure.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/types/../../std/ops/trait.Fn.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/ops/trait.FnMut.html' in chapter 'types/closure.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/types/../../std/ops/trait.FnMut.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../core/ptr/macro.addr_of.html' in chapter 'types/pointer.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/types/../../core/ptr/macro.addr_of.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../core/ptr/macro.addr_of_mut.html' in chapter 'types/pointer.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/types/../../core/ptr/macro.addr_of_mut.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/mem/fn.align_of_val.html' in chapter 'type-layout.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/mem/fn.align_of_val.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/mem/fn.size_of_val.html' in chapter 'type-layout.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/mem/fn.size_of_val.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/marker/trait.Sized.html' in chapter 'type-layout.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/marker/trait.Sized.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/mem/fn.size_of.html' in chapter 'type-layout.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/mem/fn.size_of.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/mem/fn.align_of.html' in chapter 'type-layout.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/mem/fn.align_of.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/marker/trait.Sized.html' in chapter 'type-layout.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/marker/trait.Sized.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/alloc/struct.Layout.html' in chapter 'type-layout.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/alloc/struct.Layout.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/cell/struct.UnsafeCell.html' in chapter 'interior-mutability.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/cell/struct.UnsafeCell.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/cell/struct.RefCell.html' in chapter 'interior-mutability.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/cell/struct.RefCell.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/sync/atomic/index.html' in chapter 'interior-mutability.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/sync/atomic/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../nomicon/hrtb.html' in chapter 'subtyping.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../nomicon/hrtb.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/marker/trait.Unsize.html' in chapter 'type-coercions.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/marker/trait.Unsize.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/ops/trait.CoerceUnsized.html' in chapter 'type-coercions.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/ops/trait.CoerceUnsized.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/ops/trait.Drop.html' in chapter 'destructors.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/ops/trait.Drop.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/ptr/fn.drop_in_place.html' in chapter 'destructors.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/ptr/fn.drop_in_place.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/mem/fn.forget.html' in chapter 'destructors.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/mem/fn.forget.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/mem/struct.ManuallyDrop.html' in chapter 'destructors.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/mem/struct.ManuallyDrop.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/mem/fn.forget.html' in chapter 'destructors.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/mem/fn.forget.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/index.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/boxed/struct.Box.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/boxed/struct.Box.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/rc/struct.Rc.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/rc/struct.Rc.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/sync/struct.Arc.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/sync/struct.Arc.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/pin/struct.Pin.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/pin/struct.Pin.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/cell/struct.UnsafeCell.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/cell/struct.UnsafeCell.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/marker/struct.PhantomData.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/marker/struct.PhantomData.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../nomicon/dropck.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../nomicon/dropck.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/ops/index.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/ops/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/cmp/index.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/cmp/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/ops/trait.Deref.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/ops/trait.Deref.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/ops/trait.DerefMut.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/ops/trait.DerefMut.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/ops/trait.Drop.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/ops/trait.Drop.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/marker/trait.Copy.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/marker/trait.Copy.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/clone/trait.Clone.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/clone/trait.Clone.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/marker/trait.Send.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/marker/trait.Send.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/marker/trait.Sync.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/marker/trait.Sync.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/process/trait.Termination.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/process/trait.Termination.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/marker/trait.Send.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/marker/trait.Send.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/marker/trait.Sync.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/marker/trait.Sync.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/marker/trait.Unpin.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/marker/trait.Unpin.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/panic/trait.UnwindSafe.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/panic/trait.UnwindSafe.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/panic/trait.RefUnwindSafe.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/panic/trait.RefUnwindSafe.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/marker/trait.Sized.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/marker/trait.Sized.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/boxed/struct.Box.html' in chapter 'names/preludes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/names/../../std/boxed/struct.Box.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/prelude/rust_2015/index.html' in chapter 'names/preludes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/names/../../std/prelude/rust_2015/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../core/prelude/rust_2015/index.html' in chapter 'names/preludes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/names/../../core/prelude/rust_2015/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/prelude/rust_2018/index.html' in chapter 'names/preludes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/names/../../std/prelude/rust_2018/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../core/prelude/rust_2018/index.html' in chapter 'names/preludes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/names/../../core/prelude/rust_2018/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/prelude/rust_2021/index.html' in chapter 'names/preludes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/names/../../std/prelude/rust_2021/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../core/prelude/rust_2021/index.html' in chapter 'names/preludes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/names/../../core/prelude/rust_2021/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/prelude/rust_2015/index.html' in chapter 'names/preludes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/names/../../std/prelude/rust_2015/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/prelude/rust_2018/index.html' in chapter 'names/preludes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/names/../../std/prelude/rust_2018/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/prelude/v1/index.html' in chapter 'names/preludes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/names/../../std/prelude/v1/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../core/prelude/rust_2015/index.html' in chapter 'names/preludes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/names/../../core/prelude/rust_2015/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../core/prelude/rust_2018/index.html' in chapter 'names/preludes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/names/../../core/prelude/rust_2018/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../core/prelude/v1/index.html' in chapter 'names/preludes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/names/../../core/prelude/v1/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../core/index.html' in chapter 'names/preludes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/names/../../core/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/index.html' in chapter 'names/preludes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/names/../../std/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../alloc/index.html' in chapter 'names/preludes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/names/../../alloc/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../test/index.html' in chapter 'names/preludes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/names/../../test/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/index.html' in chapter 'names/preludes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/names/../../std/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../core/index.html' in chapter 'names/preludes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/names/../../core/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/index.html' in chapter 'names/preludes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/names/../../std/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/index.html' in chapter 'names/preludes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/names/../../std/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../core/index.html' in chapter 'names/preludes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/names/../../core/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../../std/index.html' in chapter 'names/preludes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/names/../../std/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../book/ch19-01-unsafe-rust.html' in chapter 'linkage.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../book/ch19-01-unsafe-rust.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../cargo/reference/environment-variables.html' in chapter 'linkage.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../cargo/reference/environment-variables.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../core/arch/macro.asm.html' in chapter 'inline-assembly.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/arch/macro.asm.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../core/arch/macro.global_asm.html' in chapter 'inline-assembly.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/arch/macro.global_asm.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/fmt/index.html' in chapter 'inline-assembly.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/fmt/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../rustc/lints/listing/allowed-by-default.html' in chapter 'unsafe-keyword.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../rustc/lints/listing/allowed-by-default.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/keyword.unsafe.html' in chapter 'unsafe-keyword.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/keyword.unsafe.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/primitive.slice.html' in chapter 'unsafe-keyword.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/primitive.slice.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../rustc/lints/listing/allowed-by-default.html' in chapter 'unsafe-keyword.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../rustc/lints/listing/allowed-by-default.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../rustc/lints/listing/allowed-by-default.html' in chapter 'unsafe-keyword.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../rustc/lints/listing/allowed-by-default.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../nomicon/index.html' in chapter 'behavior-considered-undefined.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../nomicon/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/primitive.pointer.html' in chapter 'behavior-considered-undefined.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/primitive.pointer.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/cell/struct.UnsafeCell.html' in chapter 'behavior-considered-undefined.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/cell/struct.UnsafeCell.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/cell/struct.UnsafeCell.html' in chapter 'behavior-considered-undefined.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/cell/struct.UnsafeCell.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/cell/struct.UnsafeCell.html' in chapter 'behavior-considered-undefined.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/cell/struct.UnsafeCell.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../core/ptr/struct.NonNull.html' in chapter 'behavior-considered-undefined.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/ptr/struct.NonNull.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../core/num/index.html' in chapter 'behavior-considered-undefined.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/num/index.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../core/panic/struct.PanicInfo.html' in chapter 'runtime.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/panic/struct.PanicInfo.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../book/ch09-01-unrecoverable-errors-with-panic.html' in chapter 'runtime.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../book/ch09-01-unrecoverable-errors-with-panic.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../std/panic/fn.set_hook.html' in chapter 'runtime.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/panic/fn.set_hook.html' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../alloc/alloc/trait.GlobalAlloc.html' in chapter 'runtime.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../alloc/alloc/trait.GlobalAlloc.html' [WARNING] [makePDF] LaTeX Warning: Hyper reference `book__pdf__src__type-layoutmd__the-default-representation' on $PAGE undefined on input $LINE. @@ -238,38 +237,4 @@ expression: logs `book__pdf__src__type-layoutmd__the-rust-representation' on $PAGE undefined on input $LINE. [WARNING] [makePDF] LaTeX Warning: There were undefined references. -[WARNING] Missing character: There is no 東 (U+6771) (U+6771) in font NotoSansMono:mode=node;scrip -[WARNING] Missing character: There is no 京 (U+4EAC) (U+4EAC) in font NotoSansMono:mode=node;scrip -[WARNING] Missing character: There is no ≤ (U+2264) (U+2264) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ≤ (U+2264) (U+2264) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ≤ (U+2264) (U+2264) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ≤ (U+2264) (U+2264) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ≤ (U+2264) (U+2264) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ≤ (U+2264) (U+2264) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ∪ (U+222A) (U+222A) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ⊇ (U+2287) (U+2287) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ∈ (U+2208) (U+2208) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ⊇ (U+2287) (U+2287) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ∈ (U+2208) (U+2208) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ∪ (U+222A) (U+222A) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ∩ (U+2229) (U+2229) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ∈ (U+2208) (U+2208) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ∪ (U+222A) (U+222A) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ∪ (U+222A) (U+222A) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ∈ (U+2208) (U+2208) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ∉ (U+2209) (U+2209) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ∈ (U+2208) (U+2208) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ∪ (U+222A) (U+222A) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ∪ (U+222A) (U+222A) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ∈ (U+2208) (U+2208) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ∪ (U+222A) (U+222A) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ∪ (U+222A) (U+222A) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ∈ (U+2208) (U+2208) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ∪ (U+222A) (U+222A) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ∩ (U+2229) (U+2229) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ⊈ (U+2288) (U+2288) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ⊆ (U+2286) (U+2286) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ⊈ (U+2288) (U+2288) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ⊈ (U+2288) (U+2288) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ⊆ (U+2286) (U+2286) in font NotoSerif:mode=node;script=l INFO mdbook_pandoc::pandoc::renderer: Wrote output to book/pdf/book.pdf diff --git a/src/snapshots/mdbook_pandoc__tests__rustc_dev_guide.snap b/src/snapshots/mdbook_pandoc__tests__rustc_dev_guide.snap index c7c05de..8c461da 100644 --- a/src/snapshots/mdbook_pandoc__tests__rustc_dev_guide.snap +++ b/src/snapshots/mdbook_pandoc__tests__rustc_dev_guide.snap @@ -8,8 +8,8 @@ expression: logs WARN mdbook::preprocess::cmd: Command: mdbook-toc INFO mdbook::book: Running the pandoc backend INFO mdbook_pandoc: Processing redirects in [output.html.redirect] - WARN mdbook_pandoc::preprocess: Unable to normalize link 'github.com/rust-lang/rustc_codegen_gcc/' in chapter 'Running tests': Unable to canonicalize path: $ROOT/src/tests/github.com/rust-lang/rustc_codegen_gcc/: No such file or directory (os error 2) - WARN mdbook_pandoc::preprocess: Unable to normalize link './slg.html' in chapter 'Canonicalization': Unable to canonicalize path: $ROOT/src/traits/./slg.html: No such file or directory (os error 2) + INFO mdbook_pandoc::preprocess: Unable to resolve relative path 'github.com/rust-lang/rustc_codegen_gcc/' in chapter 'tests/running.md', linking to hosted HTML book at 'https://rustc-dev-guide.rust-lang.org/tests/github.com/rust-lang/rustc_codegen_gcc/' + INFO mdbook_pandoc::preprocess: Unable to resolve relative path './slg.html' in chapter 'traits/canonicalization.md', linking to hosted HTML book at 'https://rustc-dev-guide.rust-lang.org/traits/./slg.html' WARN mdbook_pandoc::preprocess: Heading (level h5) converted to paragraph in chapter: Coinduction WARN mdbook_pandoc::preprocess: Heading (level h5) converted to paragraph in chapter: Coinduction WARN mdbook_pandoc::preprocess: Heading (level h5) converted to paragraph in chapter: Return Position Impl Trait In Trait @@ -23,8 +23,7 @@ expression: logs WARN mdbook_pandoc::preprocess: Heading (level h5) converted to paragraph in chapter: Return Position Impl Trait In Trait WARN mdbook_pandoc::preprocess: Heading (level h5) converted to paragraph in chapter: Return Position Impl Trait In Trait WARN mdbook_pandoc::preprocess: Heading (level h5) converted to paragraph in chapter: Return Position Impl Trait In Trait - WARN mdbook_pandoc::preprocess: Unable to normalize link '../guides/editions.md#edition-specific-lints' in chapter 'Errors and Lints': Unable to canonicalize path: $ROOT/src/../guides/editions.md: No such file or directory (os error 2) - WARN mdbook_pandoc: Unable to resolve one or more relative links within the book, consider setting the `hosted-html` option in `[output.pandoc]` + INFO mdbook_pandoc::preprocess: Unable to resolve relative path '../guides/editions.md' in chapter 'diagnostics.md', linking to hosted HTML book at 'https://rustc-dev-guide.rust-lang.org/../guides/editions.md' [WARNING] [makePDF] LaTeX Warning: Hyper reference `book__pandoc__pdf__src__appendix__glossarymd__ice' on $PAGE undefined on input $LINE. [WARNING] [makePDF] LaTeX Warning: Hyper reference @@ -221,24 +220,4 @@ expression: logs `book__pandoc__pdf__src__hirmd__hir-id' on $PAGE undefined on input $LINE. [WARNING] [makePDF] LaTeX Warning: There were undefined references. -[WARNING] Missing character: There is no 🔑 (U+1F511) (U+1F511) in font NotoSerif:mode=node;script -[WARNING] Missing character: There is no ✅ (U+2705) (U+2705) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ❌ (U+274C) (U+274C) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ✅ (U+2705) (U+2705) in font NotoSerif/B:mode=node;script -[WARNING] Missing character: There is no ✅ (U+2705) (U+2705) in font NotoSerif/B:mode=node;script -[WARNING] Missing character: There is no ❌ (U+274C) (U+274C) in font NotoSerif/B:mode=node;script -[WARNING] Missing character: There is no ✅ (U+2705) (U+2705) in font NotoSerif/B:mode=node;script -[WARNING] Missing character: There is no ✅ (U+2705) (U+2705) in font NotoSerif/B:mode=node;script -[WARNING] Missing character: There is no ✅ (U+2705) (U+2705) in font NotoSerif/B:mode=node;script -[WARNING] Missing character: There is no ✅ (U+2705) (U+2705) in font NotoSerif/B:mode=node;script -[WARNING] Missing character: There is no ❌ (U+274C) (U+274C) in font NotoSerif/B:mode=node;script -[WARNING] Missing character: There is no ✅ (U+2705) (U+2705) in font NotoSerif/B:mode=node;script -[WARNING] Missing character: There is no ✅ (U+2705) (U+2705) in font NotoSerif/B:mode=node;script -[WARNING] Missing character: There is no ❌ (U+274C) (U+274C) in font NotoSerif/B:mode=node;script -[WARNING] Missing character: There is no ✅ (U+2705) (U+2705) in font NotoSerif/B:mode=node;script -[WARNING] Missing character: There is no ⊇ (U+2287) (U+2287) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ✅ (U+2705) (U+2705) in font NotoSansMono:mode=node;scrip -[WARNING] Missing character: There is no ✅ (U+2705) (U+2705) in font NotoSansMono:mode=node;scrip -[WARNING] Missing character: There is no ∀ (U+2200) (U+2200) in font NotoSerif:mode=node;script=l -[WARNING] Missing character: There is no ∃ (U+2203) (U+2203) in font NotoSerif:mode=node;script=l INFO mdbook_pandoc::pandoc::renderer: Wrote output to book/pandoc/pdf/book.pdf