Skip to content

Commit 8350715

Browse files
committed
add redirects
1 parent 9ce6aeb commit 8350715

File tree

1 file changed

+72
-0
lines changed

1 file changed

+72
-0
lines changed

book.toml

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,75 @@ title = "The Edition Guide"
66

77
[output.html]
88
git-repository-url = "https://github.com/rust-lang/edition-guide"
9+
10+
[output.html.redirect]
11+
"/rust-2018/edition-changes.html" = "/rust-2018/index.html"
12+
"/rust-2018/module-system/index.html" = "/rust-2018/path-changes.html"
13+
"/rust-2018/module-system/raw-identifiers.html" = "/rust-2018/path-changes.html"
14+
"/rust-2018/module-system/path-clarity.html" = "/rust-2018/path-changes.html"
15+
"/rust-2018/module-system/more-visibility-modifiers.html" = "/rust-2018/path-changes.html"
16+
"/rust-2018/module-system/nested-imports-with-use.html" = "/rust-2018/path-changes.html"
17+
"/rust-2018/error-handling-and-panics/index.html" = "/rust-2018/index.html"
18+
"/rust-2018/error-handling-and-panics/the-question-mark-operator-for-easier-error-handling.html" = "/rust-2018/index.html"
19+
"/rust-2018/error-handling-and-panics/question-mark-in-main-and-tests.html" = "/rust-2018/index.html"
20+
"/rust-2018/error-handling-and-panics/controlling-panics-with-std-panic.html" = "/rust-2018/index.html"
21+
"/rust-2018/error-handling-and-panics/aborting-on-panic.html" = "/rust-2018/index.html"
22+
"/rust-2018/control-flow/index.html" = "/rust-2018/index.html"
23+
"/rust-2018/control-flow/loops-can-break-with-a-value.html" = "/rust-2018/index.html"
24+
"/rust-2018/control-flow/async-await-for-easier-concurrency.html" = "/rust-2018/index.html"
25+
"/rust-2018/trait-system/index.html" = "/rust-2018/index.html"
26+
"/rust-2018/trait-system/impl-trait-for-returning-complex-types-with-ease.html" = "/rust-2018/index.html"
27+
"/rust-2018/trait-system/dyn-trait-for-trait-objects.html" = "/rust-2018/index.html"
28+
"/rust-2018/trait-system/more-container-types-support-trait-objects.html" = "/rust-2018/index.html"
29+
"/rust-2018/trait-system/associated-constants.html" = "/rust-2018/index.html"
30+
"/rust-2018/trait-system/no-anon-params.html" = "/rust-2018/index.html"
31+
"/rust-2018/slice-patterns.html" = "/rust-2018/index.html"
32+
"/rust-2018/ownership-and-lifetimes/index.html" = "/rust-2018/index.html"
33+
"/rust-2018/ownership-and-lifetimes/non-lexical-lifetimes.html" = "/rust-2018/index.html"
34+
"/rust-2018/ownership-and-lifetimes/default-match-bindings.html" = "/rust-2018/index.html"
35+
"/rust-2018/ownership-and-lifetimes/the-anonymous-lifetime.html" = "/rust-2018/index.html"
36+
"/rust-2018/ownership-and-lifetimes/lifetime-elision-in-impl.html" = "/rust-2018/index.html"
37+
"/rust-2018/ownership-and-lifetimes/inference-in-structs.html" = "/rust-2018/index.html"
38+
"/rust-2018/ownership-and-lifetimes/simpler-lifetimes-in-static-and-const.html" = "/rust-2018/index.html"
39+
"/rust-2018/data-types/index.html" = "/rust-2018/index.html"
40+
"/rust-2018/data-types/field-init-shorthand.html" = "/rust-2018/index.html"
41+
"/rust-2018/data-types/inclusive-ranges.html" = "/rust-2018/index.html"
42+
"/rust-2018/data-types/128-bit-integers.html" = "/rust-2018/index.html"
43+
"/rust-2018/data-types/operator-equals-are-now-implementable.html" = "/rust-2018/index.html"
44+
"/rust-2018/data-types/union-for-an-unsafe-form-of-enum.html" = "/rust-2018/index.html"
45+
"/rust-2018/data-types/choosing-alignment-with-the-repr-attribute.html" = "/rust-2018/index.html"
46+
"/rust-2018/simd-for-faster-computing.html" = "/rust-2018/index.html"
47+
"/rust-2018/macros/index.html" = "/rust-2018/index.html"
48+
"/rust-2018/macros/custom-derive.html" = "/rust-2018/index.html"
49+
"/rust-2018/macros/macro-changes.html" = "/rust-2018/index.html"
50+
"/rust-2018/macros/at-most-once.html" = "/rust-2018/index.html"
51+
"/rust-2018/the-compiler/index.html" = "/rust-2018/index.html"
52+
"/rust-2018/the-compiler/improved-error-messages.html" = "/rust-2018/index.html"
53+
"/rust-2018/the-compiler/incremental-compilation-for-faster-compiles.html" = "/rust-2018/index.html"
54+
"/rust-2018/the-compiler/an-attribute-for-deprecation.html" = "/rust-2018/index.html"
55+
"/rust-2018/rustup-for-managing-rust-versions.html" = "/rust-2018/index.html"
56+
"/rust-2018/cargo-and-crates-io/index.html" = "/rust-2018/cargo.html"
57+
"/rust-2018/cargo-and-crates-io/cargo-check-for-faster-checking.html" = "/rust-2018/cargo.html"
58+
"/rust-2018/cargo-and-crates-io/cargo-install-for-easy-installation-of-tools.html" = "/rust-2018/cargo.html"
59+
"/rust-2018/cargo-and-crates-io/cargo-new-defaults-to-a-binary-project.html" = "/rust-2018/cargo.html"
60+
"/rust-2018/cargo-and-crates-io/cargo-rustc-for-passing-arbitrary-flags-to-rustc.html" = "/rust-2018/cargo.html"
61+
"/rust-2018/cargo-and-crates-io/cargo-workspaces-for-multi-package-projects.html" = "/rust-2018/cargo.html"
62+
"/rust-2018/cargo-and-crates-io/multi-file-examples.html" = "/rust-2018/cargo.html"
63+
"/rust-2018/cargo-and-crates-io/replacing-dependencies-with-patch.html" = "/rust-2018/cargo.html"
64+
"/rust-2018/cargo-and-crates-io/cargo-can-use-a-local-registry-replacement.html" = "/rust-2018/cargo.html"
65+
"/rust-2018/cargo-and-crates-io/crates-io-disallows-wildcard-dependencies.html" = "/rust-2018/cargo.html"
66+
"/rust-2018/documentation/index.html" = "/rust-2018/index.html"
67+
"/rust-2018/documentation/new-editions-of-the-book.html" = "/rust-2018/index.html"
68+
"/rust-2018/documentation/the-rust-bookshelf.html" = "/rust-2018/index.html"
69+
"/rust-2018/documentation/the-rustonomicon.html" = "/rust-2018/index.html"
70+
"/rust-2018/documentation/std-os-has-documentation-for-all-platforms.html" = "/rust-2018/index.html"
71+
"/rust-2018/rustdoc/index.html" = "/rust-2018/index.html"
72+
"/rust-2018/rustdoc/documentation-tests-can-now-compile-fail.html" = "/rust-2018/index.html"
73+
"/rust-2018/rustdoc/rustdoc-uses-commonmark.html" = "/rust-2018/index.html"
74+
"/rust-2018/platform-and-target-support/index.html" = "/rust-2018/index.html"
75+
"/rust-2018/platform-and-target-support/libcore-for-low-level-rust.html" = "/rust-2018/index.html"
76+
"/rust-2018/platform-and-target-support/webassembly-support.html" = "/rust-2018/index.html"
77+
"/rust-2018/platform-and-target-support/global-allocators.html" = "/rust-2018/index.html"
78+
"/rust-2018/platform-and-target-support/msvc-toolchain-support.html" = "/rust-2018/index.html"
79+
"/rust-2018/platform-and-target-support/musl-support-for-fully-static-binaries.html" = "/rust-2018/index.html"
80+
"/rust-2018/platform-and-target-support/cdylib-crates-for-c-interoperability.html" = "/rust-2018/index.html"

0 commit comments

Comments
 (0)