Update to rust-1.21.0

From semarie (maintainer)
This commit is contained in:
danj 2017-10-17 17:19:24 +00:00
parent b586f8c741
commit 0888a63c75
11 changed files with 502 additions and 428 deletions

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.51 2017/09/03 14:08:36 danj Exp $
# $OpenBSD: Makefile,v 1.52 2017/10/17 17:19:24 danj Exp $
# snapshots are only available for amd64 and i386, for now
ONLY_FOR_ARCHS = amd64 i386
@ -8,13 +8,13 @@ DPB_PROPERTIES = parallel
COMMENT-main = compiler for Rust Language
COMMENT-doc = html documentation for rustc
V = 1.20.0
CARGO_V = 0.21.0
V = 1.21.0
CARGO_V = 0.22.0
DISTNAME = rustc-${V}-src
# rustc bootstrap version
BV-amd64 = 1.20.0-20170829
BV-i386 = 1.20.0-20170901
BV-amd64 = 1.21.0-20171011
BV-i386 = 1.21.0-20171011
BV = ${BV-${MACHINE_ARCH}}
PKGNAME = rust-${V}
@ -32,7 +32,7 @@ MAINTAINER = Sebastien Marie <semarie@online.fr>
# with portions covered by various BSD-like licenses
PERMIT_PACKAGE_CDROM = Yes
WANTLIB-main = ${MODGCC4_CPPWANTLIB} c crypto curl git2 m pthread ssh2 ssl z
WANTLIB-main = ${MODGCC4_CPPWANTLIB} c crypto curl git2 m pthread ssh2 ssl
WANTLIB-doc =
MASTER_SITES = https://static.rust-lang.org/dist/ \

View File

@ -1,6 +1,6 @@
SHA256 (rust/rustc-1.20.0-src.tar.gz) = KqSHX/RHLG41Jiu7kFLLJiPaPa5ghKhYzFnTbzPxghQ=
SHA256 (rust/rustc-bootstrap-amd64-1.20.0-20170829.tar.gz) = U/r7RegARHYD/cr/CK3SPW7f9zabUjGEG8hGTw+b3sI=
SHA256 (rust/rustc-bootstrap-i386-1.20.0-20170901.tar.gz) = QL7KVxDomuN+rKq6HYFrluEExkWGQQvVU4QCpUKOAUg=
SIZE (rust/rustc-1.20.0-src.tar.gz) = 50418082
SIZE (rust/rustc-bootstrap-amd64-1.20.0-20170829.tar.gz) = 71871340
SIZE (rust/rustc-bootstrap-i386-1.20.0-20170901.tar.gz) = 73475997
SHA256 (rust/rustc-1.21.0-src.tar.gz) = FwfBQiRLW9kJmTVZxhFsgZh8HeIdYgfAXT7L5bulSPo=
SHA256 (rust/rustc-bootstrap-amd64-1.21.0-20171011.tar.gz) = nP3WTuV6MLLKCl/tccTCwnIoef11H3S8jt4KV9cM078=
SHA256 (rust/rustc-bootstrap-i386-1.21.0-20171011.tar.gz) = kndxerGu0GNhA94oxsfKd8aXmwiiwBSoJ20/VycJGQc=
SIZE (rust/rustc-1.21.0-src.tar.gz) = 52555346
SIZE (rust/rustc-bootstrap-amd64-1.21.0-20171011.tar.gz) = 71726150
SIZE (rust/rustc-bootstrap-i386-1.21.0-20171011.tar.gz) = 73368315

View File

@ -1,11 +1,11 @@
$OpenBSD: patch-src_bootstrap_lib_rs,v 1.6 2017/09/03 14:08:36 danj Exp $
$OpenBSD: patch-src_bootstrap_lib_rs,v 1.7 2017/10/17 17:19:24 danj Exp $
Let us compilation choice to be honored.
Index: src/bootstrap/lib.rs
--- src/bootstrap/lib.rs.orig
+++ src/bootstrap/lib.rs
@@ -857,7 +857,6 @@ impl Build {
@@ -603,7 +603,6 @@ impl Build {
// gcc-rs because the build scripts will determine that for themselves.
let mut base = self.cc[target].0.args().iter()
let mut base = self.cc[&target].0.args().iter()
.map(|s| s.to_string_lossy().into_owned())
- .filter(|s| !s.starts_with("-O") && !s.starts_with("/O"))
.collect::<Vec<_>>();

View File

@ -1,9 +1,9 @@
$OpenBSD: patch-src_librustdoc_test_rs,v 1.10 2017/09/03 14:08:36 danj Exp $
$OpenBSD: patch-src_librustdoc_test_rs,v 1.11 2017/10/17 17:19:24 danj Exp $
fallback to LOCALBASE as default sysroot.
Index: src/librustdoc/test.rs
--- src/librustdoc/test.rs.orig
+++ src/librustdoc/test.rs
@@ -67,7 +67,10 @@ pub fn run(input: &str,
@@ -69,7 +69,10 @@ pub fn run(input: &str,
let sessopts = config::Options {
maybe_sysroot: maybe_sysroot.clone().or_else(
@ -15,7 +15,7 @@ Index: src/librustdoc/test.rs
search_paths: libs.clone(),
crate_types: vec![config::CrateTypeDylib],
externs: externs.clone(),
@@ -183,7 +186,10 @@ fn run_test(test: &str, cratename: &str, filename: &st
@@ -190,7 +193,10 @@ fn run_test(test: &str, cratename: &str, filename: &st
let sessopts = config::Options {
maybe_sysroot: maybe_sysroot.or_else(

View File

@ -1,9 +1,9 @@
$OpenBSD: patch-src_libstd_sys_unix_ext_net_rs,v 1.6 2017/09/03 14:08:36 danj Exp $
$OpenBSD: patch-src_libstd_sys_unix_ext_net_rs,v 1.7 2017/10/17 17:19:24 danj Exp $
Disable 4 failing tests (related to unix socket). Needs more investigation.
Index: src/libstd/sys/unix/ext/net.rs
--- src/libstd/sys/unix/ext/net.rs.orig
+++ src/libstd/sys/unix/ext/net.rs
@@ -1233,7 +1233,7 @@ impl UnixDatagram {
@@ -1260,7 +1260,7 @@ impl UnixDatagram {
///
/// # Examples
///
@ -12,7 +12,7 @@ Index: src/libstd/sys/unix/ext/net.rs
/// use std::os::unix::net::UnixDatagram;
/// use std::time::Duration;
///
@@ -1250,7 +1250,7 @@ impl UnixDatagram {
@@ -1285,7 +1285,7 @@ impl UnixDatagram {
///
/// # Examples
///
@ -21,7 +21,7 @@ Index: src/libstd/sys/unix/ext/net.rs
/// use std::os::unix::net::UnixDatagram;
/// use std::time::Duration;
///
@@ -1343,7 +1343,7 @@ mod test {
@@ -1412,7 +1412,7 @@ mod test {
use thread;
use io;
use io::prelude::*;
@ -30,7 +30,7 @@ Index: src/libstd/sys/unix/ext/net.rs
use sys_common::io::test::tmpdir;
use super::*;
@@ -1358,6 +1358,7 @@ mod test {
@@ -1427,6 +1427,7 @@ mod test {
}
#[test]
@ -38,7 +38,7 @@ Index: src/libstd/sys/unix/ext/net.rs
fn basic() {
let dir = tmpdir();
let socket_path = dir.path().join("sock");
@@ -1482,6 +1483,7 @@ mod test {
@@ -1551,6 +1552,7 @@ mod test {
}
#[test]

View File

@ -1,10 +1,10 @@
$OpenBSD: patch-src_tools_cargo_src_cargo_core_package_id_rs,v 1.1 2017/07/31 13:38:58 danj Exp $
$OpenBSD: patch-src_tools_cargo_src_cargo_core_package_id_rs,v 1.2 2017/10/17 17:19:24 danj Exp $
Don't rely on source_id for generating a hash as it could contains build dependent information (full path of the build directory).
See https://github.com/rust-lang/rust/issues/39786
Index: src/tools/cargo/src/cargo/core/package_id.rs
--- src/tools/cargo/src/cargo/core/package_id.rs.orig
+++ src/tools/cargo/src/cargo/core/package_id.rs
@@ -74,7 +74,6 @@ impl Hash for PackageId {
@@ -75,7 +75,6 @@ impl Hash for PackageId {
fn hash<S: hash::Hasher>(&self, state: &mut S) {
self.inner.name.hash(state);
self.inner.version.hash(state);

View File

@ -1,9 +1,9 @@
$OpenBSD: patch-src_tools_cargo_src_cargo_util_config_rs,v 1.1 2017/07/31 13:38:58 danj Exp $
$OpenBSD: patch-src_tools_cargo_src_cargo_util_config_rs,v 1.2 2017/10/17 17:19:24 danj Exp $
fallback to LOCALBASE as default path for cargo binary.
Index: src/tools/cargo/src/cargo/util/config.rs
--- src/tools/cargo/src/cargo/util/config.rs.orig
+++ src/tools/cargo/src/cargo/util/config.rs
@@ -121,7 +121,13 @@ impl Config {
@@ -124,7 +124,13 @@ impl Config {
pub fn cargo_exe(&self) -> CargoResult<&Path> {
self.cargo_exe.get_or_try_init(||

View File

@ -1,9 +1,9 @@
$OpenBSD: patch-src_vendor_openssl-sys_build_rs,v 1.2 2017/09/03 14:08:36 danj Exp $
$OpenBSD: patch-src_vendor_openssl-sys_build_rs,v 1.3 2017/10/17 17:19:24 danj Exp $
The LibreSSL version in -current isn't explicitly supported.
Index: src/vendor/openssl-sys/build.rs
--- src/vendor/openssl-sys/build.rs.orig
+++ src/vendor/openssl-sys/build.rs
@@ -261,7 +261,7 @@ fn validate_headers(include_dirs: &[PathBuf]) -> Versi
@@ -308,7 +308,7 @@ fn validate_headers(include_dirs: &[PathBuf]) -> Versi
#include <openssl/opensslconf.h>
#if LIBRESSL_VERSION_NUMBER >= 0x20601000

View File

@ -1,105 +1,106 @@
@comment $OpenBSD: PFRAG.amd64-main,v 1.7 2017/09/03 14:08:36 danj Exp $
lib/libarena-c4e1b2308eaa73f8.so
lib/libfmt_macros-1dcd896a109e3d52.so
lib/libgraphviz-30997d7e579244f1.so
lib/libproc_macro-75f2ed8288a1323f.so
lib/librustc-b82c2a3ae6bb60e3.so
lib/librustc_allocator-f7707eab526378ae.so
lib/librustc_back-1f12aa739d5158b8.so
lib/librustc_borrowck-a6300c880c0bb2f3.so
lib/librustc_const_eval-79f4f2af2b8d22f8.so
lib/librustc_const_math-198c5baab50b778f.so
lib/librustc_data_structures-1d50f2b8b292d2b2.so
lib/librustc_driver-c1e68c3b12131f24.so
lib/librustc_errors-cd43c6d0d79db050.so
lib/librustc_incremental-e7fad166cec7d581.so
lib/librustc_lint-41e028913c4c37f0.so
lib/librustc_llvm-922e365db6379064.so
lib/librustc_metadata-649b9b02292f0daa.so
lib/librustc_mir-c1e3606f26e2279e.so
lib/librustc_passes-e5bce5f94ef5e735.so
lib/librustc_platform_intrinsics-51ab8662665a1f2d.so
lib/librustc_plugin-8e7c803913bb2a6f.so
lib/librustc_privacy-1a0398ef36ad35fe.so
lib/librustc_resolve-a4f076cb8b68286d.so
lib/librustc_save_analysis-476061d3ce967f78.so
lib/librustc_trans-23cc1c982ed8b939.so
lib/librustc_typeck-80d02e6033e4c62e.so
lib/librustdoc-11d9af075305156d.so
lib/libserialize-f849d7110f738dd2.so
lib/libstd-b74071ef999820b5.so
lib/libsyntax-0c5552d805ae4db9.so
lib/libsyntax_ext-11212982e1ba0911.so
lib/libsyntax_pos-8f7a497c894639e4.so
lib/libterm-2838634eaafaacf3.so
lib/libtest-e53c0d10f290f58b.so
@comment $OpenBSD: PFRAG.amd64-main,v 1.8 2017/10/17 17:19:24 danj Exp $
lib/libarena-7fd6870e83411c08.so
lib/libfmt_macros-36252416540b2aab.so
lib/libgraphviz-80937ea06ea7b4bd.so
lib/libproc_macro-96ac839f0ad5010b.so
lib/librustc-d718aa5f021afeb0.so
lib/librustc_allocator-06b2a653c3b6898e.so
lib/librustc_back-e1dd4b23d59d2c7d.so
lib/librustc_borrowck-472c13a8b1a181ba.so
lib/librustc_const_eval-1b61f065958af795.so
lib/librustc_const_math-065fcdfb052b9361.so
lib/librustc_data_structures-2562a16fbdea0cf7.so
lib/librustc_driver-cdea2a2345f76067.so
lib/librustc_errors-0242713a82d1458f.so
lib/librustc_incremental-973e0e32d8a9dc07.so
lib/librustc_lint-ecb1b7beb5b5a51c.so
lib/librustc_llvm-ab41f21f50de5b47.so
lib/librustc_metadata-5b02bc7d67e60f6f.so
lib/librustc_mir-174f55dded5af869.so
lib/librustc_passes-72f65b76c15f9fac.so
lib/librustc_platform_intrinsics-8c176f652f7a3f0e.so
lib/librustc_plugin-246715817e25d1a7.so
lib/librustc_privacy-4111ef6a0fe2a14f.so
lib/librustc_resolve-d05b0198a499405d.so
lib/librustc_save_analysis-5a36d15943c1abb5.so
lib/librustc_trans-d32a2c0663b4c7e6.so
lib/librustc_trans_utils-dcb40aaa7bad8a27.so
lib/librustc_typeck-07cc5de82377c476.so
lib/libserialize-850185df1260ca55.so
lib/libstd-3ce37c970e2a48a8.so
lib/libsyntax-5cfef3b2f1bbeabd.so
lib/libsyntax_ext-92ce61c306b3a25f.so
lib/libsyntax_pos-bce9232ca4dc17fd.so
lib/libterm-e5f542a82a3260a2.so
lib/libtest-711c7a6511d33b71.so
lib/rustlib/x86_64-unknown-openbsd/
lib/rustlib/x86_64-unknown-openbsd/lib/
lib/rustlib/x86_64-unknown-openbsd/lib/liballoc-7694d6f315c19596.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/liballoc_jemalloc-db3bcb10905123b2.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/liballoc_system-eb3d3e68d16d1d26.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libarena-c4e1b2308eaa73f8.so
lib/rustlib/x86_64-unknown-openbsd/lib/libbitflags-cdf9ff4b02c1add6.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libcollections-b060fdecd998098d.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libcompiler_builtins-7c8ffbf07bd35935.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libcore-e4142bce75d6ec99.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libcrossbeam-0f7ae91bed2eb93c.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libenv_logger-28bd142f0e0a96a8.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libflate2-12fc0b93c79ef4af.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libfmt_macros-1dcd896a109e3d52.so
lib/rustlib/x86_64-unknown-openbsd/lib/liballoc-d081ae04e906ef67.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/liballoc_jemalloc-5009cbd281ea43b1.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/liballoc_system-d3d47358b9de8846.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libar-5ef52ced46854d21.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libarena-7fd6870e83411c08.so
lib/rustlib/x86_64-unknown-openbsd/lib/libbitflags-f13ead1e44d64e1f.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libcollections-d62a53063bcfcadd.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libcompiler_builtins-bc1a12b8af79a6b5.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libcore-7371526cec616ecd.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libenv_logger-227b2e08c0debcb9.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libflate2-db3c29f94d136805.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libfmt_macros-36252416540b2aab.so
lib/rustlib/x86_64-unknown-openbsd/lib/libgcc.a
lib/rustlib/x86_64-unknown-openbsd/lib/libgetopts-5ad6d369719893a7.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libgraphviz-30997d7e579244f1.so
lib/rustlib/x86_64-unknown-openbsd/lib/libjobserver-a118e174b15ae7fe.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/liblibc-5b693cca067302b7.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/liblibc-c063026a72e74d68.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/liblog-b22d9717f3a931dc.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libminiz_sys-2a2f39e20b5808b3.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libowning_ref-8ec693df2f86ac26.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libpanic_abort-e5119504a818b85e.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libpanic_unwind-ae955e3cbf54a16e.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libproc_macro-75f2ed8288a1323f.so
lib/rustlib/x86_64-unknown-openbsd/lib/libpulldown_cmark-70598ae2e99dcc36.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librand-e7f2d286ace26d85.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librls_data-0ed5b25c14044354.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librls_span-20d4ebd321961d04.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librustc-b82c2a3ae6bb60e3.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_allocator-f7707eab526378ae.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_back-1f12aa739d5158b8.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_bitflags-b29ed230aa911125.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_borrowck-a6300c880c0bb2f3.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_const_eval-79f4f2af2b8d22f8.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_const_math-198c5baab50b778f.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_data_structures-1d50f2b8b292d2b2.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_demangle-371701d7dcd68a68.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_driver-c1e68c3b12131f24.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_errors-cd43c6d0d79db050.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_incremental-e7fad166cec7d581.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_lint-41e028913c4c37f0.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_llvm-922e365db6379064.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_metadata-649b9b02292f0daa.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_mir-c1e3606f26e2279e.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_passes-e5bce5f94ef5e735.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_platform_intrinsics-51ab8662665a1f2d.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_plugin-8e7c803913bb2a6f.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_privacy-1a0398ef36ad35fe.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_resolve-a4f076cb8b68286d.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_save_analysis-476061d3ce967f78.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_serialize-e46e4b700de47c8b.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_trans-23cc1c982ed8b939.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_typeck-80d02e6033e4c62e.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustdoc-11d9af075305156d.so
lib/rustlib/x86_64-unknown-openbsd/lib/libserialize-f849d7110f738dd2.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libserialize-f849d7110f738dd2.so
lib/rustlib/x86_64-unknown-openbsd/lib/libstable_deref_trait-dcf6f63a29d9e76b.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libstd-b74071ef999820b5.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libstd-b74071ef999820b5.so
lib/rustlib/x86_64-unknown-openbsd/lib/libstd_unicode-fddd3430d641a342.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libsyntax-0c5552d805ae4db9.so
lib/rustlib/x86_64-unknown-openbsd/lib/libsyntax_ext-11212982e1ba0911.so
lib/rustlib/x86_64-unknown-openbsd/lib/libsyntax_pos-8f7a497c894639e4.so
lib/rustlib/x86_64-unknown-openbsd/lib/libterm-2838634eaafaacf3.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libterm-2838634eaafaacf3.so
lib/rustlib/x86_64-unknown-openbsd/lib/libtest-e53c0d10f290f58b.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libtest-e53c0d10f290f58b.so
lib/rustlib/x86_64-unknown-openbsd/lib/libunwind-51d6e2e28071efc5.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libgetopts-f4433644ad431db9.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libgraphviz-80937ea06ea7b4bd.so
lib/rustlib/x86_64-unknown-openbsd/lib/libjobserver-bd349ccfa7c2ecb8.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/liblibc-8b165f1f6339643d.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/liblibc-db63787e7dae4a0b.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/liblog-18539e0156b07057.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libminiz_sys-fe501656f975a100.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libnum_cpus-ea8d899fd60af856.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libowning_ref-2b2060f68e1f443e.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libpanic_abort-2bf609478d9ce453.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libpanic_unwind-77aaf9aa9b0b4c47.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libproc_macro-96ac839f0ad5010b.so
lib/rustlib/x86_64-unknown-openbsd/lib/librand-4c392002b114511d.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librls_data-983a42ae3fa534e2.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librls_span-bb17cc076936655a.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librustc-d718aa5f021afeb0.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_allocator-06b2a653c3b6898e.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_apfloat-d25e392ed2859163.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_back-e1dd4b23d59d2c7d.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_bitflags-ef31ffd1413cfb8c.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_borrowck-472c13a8b1a181ba.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_const_eval-1b61f065958af795.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_const_math-065fcdfb052b9361.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_data_structures-2562a16fbdea0cf7.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_demangle-a16151384fbe9c56.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_driver-cdea2a2345f76067.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_errors-0242713a82d1458f.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_incremental-973e0e32d8a9dc07.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_lint-ecb1b7beb5b5a51c.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_llvm-ab41f21f50de5b47.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_metadata-5b02bc7d67e60f6f.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_mir-174f55dded5af869.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_passes-72f65b76c15f9fac.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_platform_intrinsics-8c176f652f7a3f0e.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_plugin-246715817e25d1a7.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_privacy-4111ef6a0fe2a14f.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_resolve-d05b0198a499405d.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_save_analysis-5a36d15943c1abb5.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_serialize-0c270bcce1714375.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_trans-d32a2c0663b4c7e6.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_trans_utils-dcb40aaa7bad8a27.so
lib/rustlib/x86_64-unknown-openbsd/lib/librustc_typeck-07cc5de82377c476.so
lib/rustlib/x86_64-unknown-openbsd/lib/libserialize-850185df1260ca55.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libserialize-850185df1260ca55.so
lib/rustlib/x86_64-unknown-openbsd/lib/libstable_deref_trait-1a347d899cf317d8.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libstd-3ce37c970e2a48a8.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libstd-3ce37c970e2a48a8.so
lib/rustlib/x86_64-unknown-openbsd/lib/libstd_unicode-d18aa07d6b988e75.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libsyntax-5cfef3b2f1bbeabd.so
lib/rustlib/x86_64-unknown-openbsd/lib/libsyntax_ext-92ce61c306b3a25f.so
lib/rustlib/x86_64-unknown-openbsd/lib/libsyntax_pos-bce9232ca4dc17fd.so
lib/rustlib/x86_64-unknown-openbsd/lib/libterm-e5f542a82a3260a2.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libterm-e5f542a82a3260a2.so
lib/rustlib/x86_64-unknown-openbsd/lib/libtest-711c7a6511d33b71.rlib
lib/rustlib/x86_64-unknown-openbsd/lib/libtest-711c7a6511d33b71.so
lib/rustlib/x86_64-unknown-openbsd/lib/libunwind-1c198a1c15a567bf.rlib

View File

@ -1,105 +1,106 @@
@comment $OpenBSD: PFRAG.i386-main,v 1.7 2017/09/03 14:08:36 danj Exp $
lib/libarena-166b9ad5205b2e05.so
lib/libfmt_macros-00006886cf25deef.so
lib/libgraphviz-3f16b4a21cc17e47.so
lib/libproc_macro-d76d116b214f0852.so
lib/librustc-fdcedcd687915047.so
lib/librustc_allocator-411b09cdd3a10079.so
lib/librustc_back-9d7010d3ec009e62.so
lib/librustc_borrowck-22d4f71a5857e3cd.so
lib/librustc_const_eval-7a13f8f584b61f41.so
lib/librustc_const_math-587255746c419668.so
lib/librustc_data_structures-64245714a27a3d32.so
lib/librustc_driver-4d0d7e14ed731adf.so
lib/librustc_errors-0200309e76aa94d7.so
lib/librustc_incremental-2e5c174decbcdd64.so
lib/librustc_lint-e235c3af15b2f4b0.so
lib/librustc_llvm-d1426a2e3a003317.so
lib/librustc_metadata-aeb2756c4e9f9214.so
lib/librustc_mir-c2ed7270e0b48830.so
lib/librustc_passes-e69dac2fd0e89bbf.so
lib/librustc_platform_intrinsics-5795d42db14c6e2e.so
lib/librustc_plugin-621c9496164aa2e1.so
lib/librustc_privacy-7460d9619442c5a4.so
lib/librustc_resolve-f293ea358f9b4fd5.so
lib/librustc_save_analysis-d86d88492b7942eb.so
lib/librustc_trans-185e20fe186f67a1.so
lib/librustc_typeck-6db4c94d9fb65b47.so
lib/librustdoc-3c1b2b8ac1956366.so
lib/libserialize-565ab4e57e9b4aa9.so
lib/libstd-27c7ec9d3be16b0b.so
lib/libsyntax-7262855c655d2713.so
lib/libsyntax_ext-78480d7cbffd07ce.so
lib/libsyntax_pos-41fa0207fbb33733.so
lib/libterm-f990017f9d9b3f0a.so
lib/libtest-cc264ed3a65e64e1.so
@comment $OpenBSD: PFRAG.i386-main,v 1.8 2017/10/17 17:19:24 danj Exp $
lib/libarena-9660798dccd46ad9.so
lib/libfmt_macros-0fb2de3a4665457a.so
lib/libgraphviz-a3baa590f8e7c4ff.so
lib/libproc_macro-87090c84b42c8d4c.so
lib/librustc-4260795f43efffd6.so
lib/librustc_allocator-0383393234a57b77.so
lib/librustc_back-06555863a8bb9e74.so
lib/librustc_borrowck-b480c3a5ff0017d1.so
lib/librustc_const_eval-7d9f4c5e763cabb7.so
lib/librustc_const_math-aab5b84282377070.so
lib/librustc_data_structures-e1ad574154aebcf6.so
lib/librustc_driver-a82ac2a7f9cc2f29.so
lib/librustc_errors-655c98bcf956d26b.so
lib/librustc_incremental-c225385b4674a213.so
lib/librustc_lint-5008c1e31cbe9346.so
lib/librustc_llvm-014760a891defa24.so
lib/librustc_metadata-c195151250f165ca.so
lib/librustc_mir-92fddd36e109082a.so
lib/librustc_passes-725c26bd8075b2b3.so
lib/librustc_platform_intrinsics-e0b05bf67c64170a.so
lib/librustc_plugin-102c54cee23b2994.so
lib/librustc_privacy-afef9e9bbe4b175e.so
lib/librustc_resolve-39222fe9e38303ce.so
lib/librustc_save_analysis-8de09ad7dae700c6.so
lib/librustc_trans-6bba1d005693f009.so
lib/librustc_trans_utils-0a6b6ecec1b7d631.so
lib/librustc_typeck-b7130a7576e23cc6.so
lib/libserialize-0122dd36fec86917.so
lib/libstd-4bbf03d80a6a0913.so
lib/libsyntax-e66064f6ca82cd24.so
lib/libsyntax_ext-de0b4c8a0b394f92.so
lib/libsyntax_pos-b80f54f022f99798.so
lib/libterm-481992531f1775dc.so
lib/libtest-a0a6209542386a14.so
lib/rustlib/i686-unknown-openbsd/
lib/rustlib/i686-unknown-openbsd/lib/
lib/rustlib/i686-unknown-openbsd/lib/liballoc-9eca44077e76e8f0.rlib
lib/rustlib/i686-unknown-openbsd/lib/liballoc_jemalloc-bc6d2c8fa1ff64b8.rlib
lib/rustlib/i686-unknown-openbsd/lib/liballoc_system-69b1841e19f3cb3e.rlib
lib/rustlib/i686-unknown-openbsd/lib/libarena-166b9ad5205b2e05.so
lib/rustlib/i686-unknown-openbsd/lib/libbitflags-15171aa7436d2d78.rlib
lib/rustlib/i686-unknown-openbsd/lib/libcollections-c295f98b2067c3ba.rlib
lib/rustlib/i686-unknown-openbsd/lib/libcompiler_builtins-9463f40959431fb6.rlib
lib/rustlib/i686-unknown-openbsd/lib/libcore-0ce0ec1be011a012.rlib
lib/rustlib/i686-unknown-openbsd/lib/libcrossbeam-916f194c3946f17f.rlib
lib/rustlib/i686-unknown-openbsd/lib/libenv_logger-1266f3457f007e01.rlib
lib/rustlib/i686-unknown-openbsd/lib/libflate2-9bd3a9de789b5af6.rlib
lib/rustlib/i686-unknown-openbsd/lib/libfmt_macros-00006886cf25deef.so
lib/rustlib/i686-unknown-openbsd/lib/liballoc-b90d700adcc5f27b.rlib
lib/rustlib/i686-unknown-openbsd/lib/liballoc_jemalloc-97f7bf441533b4b0.rlib
lib/rustlib/i686-unknown-openbsd/lib/liballoc_system-71cc0206de50a262.rlib
lib/rustlib/i686-unknown-openbsd/lib/libar-9673d8e9490eea37.rlib
lib/rustlib/i686-unknown-openbsd/lib/libarena-9660798dccd46ad9.so
lib/rustlib/i686-unknown-openbsd/lib/libbitflags-50fc70896c8e7ed5.rlib
lib/rustlib/i686-unknown-openbsd/lib/libcollections-f64f30cad1b77f4d.rlib
lib/rustlib/i686-unknown-openbsd/lib/libcompiler_builtins-40b0b73ffe2e5732.rlib
lib/rustlib/i686-unknown-openbsd/lib/libcore-b1a60455327566a2.rlib
lib/rustlib/i686-unknown-openbsd/lib/libenv_logger-bbb810c28f8030d5.rlib
lib/rustlib/i686-unknown-openbsd/lib/libflate2-db7fdf5e42fffc9d.rlib
lib/rustlib/i686-unknown-openbsd/lib/libfmt_macros-0fb2de3a4665457a.so
lib/rustlib/i686-unknown-openbsd/lib/libgcc.a
lib/rustlib/i686-unknown-openbsd/lib/libgetopts-c37dc93e53f8bbf8.rlib
lib/rustlib/i686-unknown-openbsd/lib/libgraphviz-3f16b4a21cc17e47.so
lib/rustlib/i686-unknown-openbsd/lib/libjobserver-647b7f1106f5a80b.rlib
lib/rustlib/i686-unknown-openbsd/lib/liblibc-22336f3f255fbfc5.rlib
lib/rustlib/i686-unknown-openbsd/lib/liblibc-e16052958825d523.rlib
lib/rustlib/i686-unknown-openbsd/lib/liblog-c282f79aa89a130a.rlib
lib/rustlib/i686-unknown-openbsd/lib/libminiz_sys-7c2be4d24497da3f.rlib
lib/rustlib/i686-unknown-openbsd/lib/libowning_ref-179616c4d2a803d2.rlib
lib/rustlib/i686-unknown-openbsd/lib/libpanic_abort-6fffa9b3b92d2868.rlib
lib/rustlib/i686-unknown-openbsd/lib/libpanic_unwind-9bc55772a3c63014.rlib
lib/rustlib/i686-unknown-openbsd/lib/libproc_macro-d76d116b214f0852.so
lib/rustlib/i686-unknown-openbsd/lib/libpulldown_cmark-158880331d144d11.rlib
lib/rustlib/i686-unknown-openbsd/lib/librand-79fae16f861ab1bd.rlib
lib/rustlib/i686-unknown-openbsd/lib/librls_data-7897694014f9727c.rlib
lib/rustlib/i686-unknown-openbsd/lib/librls_span-7a1e6aca5042c84e.rlib
lib/rustlib/i686-unknown-openbsd/lib/librustc-fdcedcd687915047.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_allocator-411b09cdd3a10079.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_back-9d7010d3ec009e62.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_bitflags-080a8e103a23cd56.rlib
lib/rustlib/i686-unknown-openbsd/lib/librustc_borrowck-22d4f71a5857e3cd.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_const_eval-7a13f8f584b61f41.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_const_math-587255746c419668.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_data_structures-64245714a27a3d32.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_demangle-a1c700716fb7e372.rlib
lib/rustlib/i686-unknown-openbsd/lib/librustc_driver-4d0d7e14ed731adf.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_errors-0200309e76aa94d7.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_incremental-2e5c174decbcdd64.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_lint-e235c3af15b2f4b0.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_llvm-d1426a2e3a003317.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_metadata-aeb2756c4e9f9214.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_mir-c2ed7270e0b48830.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_passes-e69dac2fd0e89bbf.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_platform_intrinsics-5795d42db14c6e2e.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_plugin-621c9496164aa2e1.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_privacy-7460d9619442c5a4.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_resolve-f293ea358f9b4fd5.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_save_analysis-d86d88492b7942eb.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_serialize-ea874782fc41e5b1.rlib
lib/rustlib/i686-unknown-openbsd/lib/librustc_trans-185e20fe186f67a1.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_typeck-6db4c94d9fb65b47.so
lib/rustlib/i686-unknown-openbsd/lib/librustdoc-3c1b2b8ac1956366.so
lib/rustlib/i686-unknown-openbsd/lib/libserialize-565ab4e57e9b4aa9.rlib
lib/rustlib/i686-unknown-openbsd/lib/libserialize-565ab4e57e9b4aa9.so
lib/rustlib/i686-unknown-openbsd/lib/libstable_deref_trait-a14858a2a56b48c3.rlib
lib/rustlib/i686-unknown-openbsd/lib/libstd-27c7ec9d3be16b0b.rlib
lib/rustlib/i686-unknown-openbsd/lib/libstd-27c7ec9d3be16b0b.so
lib/rustlib/i686-unknown-openbsd/lib/libstd_unicode-237b4f81145fa7eb.rlib
lib/rustlib/i686-unknown-openbsd/lib/libsyntax-7262855c655d2713.so
lib/rustlib/i686-unknown-openbsd/lib/libsyntax_ext-78480d7cbffd07ce.so
lib/rustlib/i686-unknown-openbsd/lib/libsyntax_pos-41fa0207fbb33733.so
lib/rustlib/i686-unknown-openbsd/lib/libterm-f990017f9d9b3f0a.rlib
lib/rustlib/i686-unknown-openbsd/lib/libterm-f990017f9d9b3f0a.so
lib/rustlib/i686-unknown-openbsd/lib/libtest-cc264ed3a65e64e1.rlib
lib/rustlib/i686-unknown-openbsd/lib/libtest-cc264ed3a65e64e1.so
lib/rustlib/i686-unknown-openbsd/lib/libunwind-a7db92acb08c0464.rlib
lib/rustlib/i686-unknown-openbsd/lib/libgetopts-c4677fe2570791ba.rlib
lib/rustlib/i686-unknown-openbsd/lib/libgraphviz-a3baa590f8e7c4ff.so
lib/rustlib/i686-unknown-openbsd/lib/libjobserver-1031b7300dd7e645.rlib
lib/rustlib/i686-unknown-openbsd/lib/liblibc-5217b8692cdd6704.rlib
lib/rustlib/i686-unknown-openbsd/lib/liblibc-9bcc0423eb53eb03.rlib
lib/rustlib/i686-unknown-openbsd/lib/liblog-a28733138ac210e4.rlib
lib/rustlib/i686-unknown-openbsd/lib/libminiz_sys-ea99e7b866324391.rlib
lib/rustlib/i686-unknown-openbsd/lib/libnum_cpus-6fc47df354347edc.rlib
lib/rustlib/i686-unknown-openbsd/lib/libowning_ref-8608758e8b230fd5.rlib
lib/rustlib/i686-unknown-openbsd/lib/libpanic_abort-fbb009931f8bdecf.rlib
lib/rustlib/i686-unknown-openbsd/lib/libpanic_unwind-3afbf89da72a30f8.rlib
lib/rustlib/i686-unknown-openbsd/lib/libproc_macro-87090c84b42c8d4c.so
lib/rustlib/i686-unknown-openbsd/lib/librand-6c33c220a4b01e12.rlib
lib/rustlib/i686-unknown-openbsd/lib/librls_data-0c59d2bab061da29.rlib
lib/rustlib/i686-unknown-openbsd/lib/librls_span-993752021696ca1d.rlib
lib/rustlib/i686-unknown-openbsd/lib/librustc-4260795f43efffd6.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_allocator-0383393234a57b77.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_apfloat-f720719355d18e45.rlib
lib/rustlib/i686-unknown-openbsd/lib/librustc_back-06555863a8bb9e74.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_bitflags-7921a828c8f9e0ba.rlib
lib/rustlib/i686-unknown-openbsd/lib/librustc_borrowck-b480c3a5ff0017d1.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_const_eval-7d9f4c5e763cabb7.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_const_math-aab5b84282377070.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_data_structures-e1ad574154aebcf6.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_demangle-a5634e9011152a34.rlib
lib/rustlib/i686-unknown-openbsd/lib/librustc_driver-a82ac2a7f9cc2f29.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_errors-655c98bcf956d26b.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_incremental-c225385b4674a213.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_lint-5008c1e31cbe9346.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_llvm-014760a891defa24.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_metadata-c195151250f165ca.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_mir-92fddd36e109082a.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_passes-725c26bd8075b2b3.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_platform_intrinsics-e0b05bf67c64170a.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_plugin-102c54cee23b2994.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_privacy-afef9e9bbe4b175e.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_resolve-39222fe9e38303ce.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_save_analysis-8de09ad7dae700c6.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_serialize-1692904ef5a61866.rlib
lib/rustlib/i686-unknown-openbsd/lib/librustc_trans-6bba1d005693f009.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_trans_utils-0a6b6ecec1b7d631.so
lib/rustlib/i686-unknown-openbsd/lib/librustc_typeck-b7130a7576e23cc6.so
lib/rustlib/i686-unknown-openbsd/lib/libserialize-0122dd36fec86917.rlib
lib/rustlib/i686-unknown-openbsd/lib/libserialize-0122dd36fec86917.so
lib/rustlib/i686-unknown-openbsd/lib/libstable_deref_trait-3dedaa2167da343c.rlib
lib/rustlib/i686-unknown-openbsd/lib/libstd-4bbf03d80a6a0913.rlib
lib/rustlib/i686-unknown-openbsd/lib/libstd-4bbf03d80a6a0913.so
lib/rustlib/i686-unknown-openbsd/lib/libstd_unicode-dcc2ad872f2ae341.rlib
lib/rustlib/i686-unknown-openbsd/lib/libsyntax-e66064f6ca82cd24.so
lib/rustlib/i686-unknown-openbsd/lib/libsyntax_ext-de0b4c8a0b394f92.so
lib/rustlib/i686-unknown-openbsd/lib/libsyntax_pos-b80f54f022f99798.so
lib/rustlib/i686-unknown-openbsd/lib/libterm-481992531f1775dc.rlib
lib/rustlib/i686-unknown-openbsd/lib/libterm-481992531f1775dc.so
lib/rustlib/i686-unknown-openbsd/lib/libtest-a0a6209542386a14.rlib
lib/rustlib/i686-unknown-openbsd/lib/libtest-a0a6209542386a14.so
lib/rustlib/i686-unknown-openbsd/lib/libunwind-ddcb29b546ee8abc.rlib

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST-doc,v 1.23 2017/09/03 14:08:36 danj Exp $
@comment $OpenBSD: PLIST-doc,v 1.24 2017/10/17 17:19:24 danj Exp $
share/doc/rust/
share/doc/rust/html/
share/doc/rust/html/.lock
@ -390,6 +390,7 @@ share/doc/rust/html/alloc/string/trait.ToString.html
share/doc/rust/html/alloc/vec/
share/doc/rust/html/alloc/vec.m.html
share/doc/rust/html/alloc/vec/Drain.t.html
share/doc/rust/html/alloc/vec/DrainFilter.t.html
share/doc/rust/html/alloc/vec/IntoIter.t.html
share/doc/rust/html/alloc/vec/PlaceBack.t.html
share/doc/rust/html/alloc/vec/Splice.t.html
@ -397,6 +398,7 @@ share/doc/rust/html/alloc/vec/Vec.t.html
share/doc/rust/html/alloc/vec/index.html
share/doc/rust/html/alloc/vec/sidebar-items.js
share/doc/rust/html/alloc/vec/struct.Drain.html
share/doc/rust/html/alloc/vec/struct.DrainFilter.html
share/doc/rust/html/alloc/vec/struct.IntoIter.html
share/doc/rust/html/alloc/vec/struct.PlaceBack.html
share/doc/rust/html/alloc/vec/struct.Splice.html
@ -656,17 +658,21 @@ share/doc/rust/html/book/second-edition/favicon.png
share/doc/rust/html/book/second-edition/highlight.css
share/doc/rust/html/book/second-edition/highlight.js
share/doc/rust/html/book/second-edition/img/
share/doc/rust/html/book/second-edition/img/hello.png
share/doc/rust/html/book/second-edition/img/trpl04-01.svg
share/doc/rust/html/book/second-edition/img/trpl04-02.svg
share/doc/rust/html/book/second-edition/img/trpl04-03.svg
share/doc/rust/html/book/second-edition/img/trpl04-04.svg
share/doc/rust/html/book/second-edition/img/trpl04-05.svg
share/doc/rust/html/book/second-edition/img/trpl04-06.svg
share/doc/rust/html/book/second-edition/img/trpl14-03.png
share/doc/rust/html/book/second-edition/img/trpl14-05.png
share/doc/rust/html/book/second-edition/img/trpl14-07.png
share/doc/rust/html/book/second-edition/img/trpl14-10.png
share/doc/rust/html/book/second-edition/img/trpl15-01.svg
share/doc/rust/html/book/second-edition/img/trpl15-02.svg
share/doc/rust/html/book/second-edition/img/trpl15-03.svg
share/doc/rust/html/book/second-edition/img/trpl15-04.svg
share/doc/rust/html/book/second-edition/img/trpl20-01.png
share/doc/rust/html/book/second-edition/index.html
share/doc/rust/html/book/second-edition/jquery.js
share/doc/rust/html/book/second-edition/print.html
@ -686,6 +692,8 @@ share/doc/rust/html/book/unsized-types.html
share/doc/rust/html/book/using-rust-without-the-standard-library.html
share/doc/rust/html/book/variable-bindings.html
share/doc/rust/html/book/vectors.html
share/doc/rust/html/cargo/
share/doc/rust/html/cargo/index.html
share/doc/rust/html/collections/
share/doc/rust/html/collections/Bound.t.html
share/doc/rust/html/collections/binary_heap/
@ -964,6 +972,7 @@ share/doc/rust/html/collections/string/trait.ToString.html
share/doc/rust/html/collections/vec/
share/doc/rust/html/collections/vec.m.html
share/doc/rust/html/collections/vec/Drain.t.html
share/doc/rust/html/collections/vec/DrainFilter.t.html
share/doc/rust/html/collections/vec/IntoIter.t.html
share/doc/rust/html/collections/vec/PlaceBack.t.html
share/doc/rust/html/collections/vec/Splice.t.html
@ -971,6 +980,7 @@ share/doc/rust/html/collections/vec/Vec.t.html
share/doc/rust/html/collections/vec/index.html
share/doc/rust/html/collections/vec/sidebar-items.js
share/doc/rust/html/collections/vec/struct.Drain.html
share/doc/rust/html/collections/vec/struct.DrainFilter.html
share/doc/rust/html/collections/vec/struct.IntoIter.html
share/doc/rust/html/collections/vec/struct.PlaceBack.html
share/doc/rust/html/collections/vec/struct.Splice.html
@ -1948,6 +1958,7 @@ share/doc/rust/html/core/mem/fn.size_of_val.html
share/doc/rust/html/core/mem/fn.swap.html
share/doc/rust/html/core/mem/fn.transmute_copy.html
share/doc/rust/html/core/mem/fn.uninitialized.html
share/doc/rust/html/core/mem/fn.unreachable.html
share/doc/rust/html/core/mem/fn.zeroed.html
share/doc/rust/html/core/mem/forget.v.html
share/doc/rust/html/core/mem/index.html
@ -1963,6 +1974,7 @@ share/doc/rust/html/core/mem/swap.v.html
share/doc/rust/html/core/mem/transmute_copy.v.html
share/doc/rust/html/core/mem/uninitialized.v.html
share/doc/rust/html/core/mem/union.ManuallyDrop.html
share/doc/rust/html/core/mem/unreachable.v.html
share/doc/rust/html/core/mem/zeroed.v.html
share/doc/rust/html/core/module_path.m.html
share/doc/rust/html/core/nonzero/
@ -2545,12 +2557,6 @@ share/doc/rust/html/implementors/collections/str/pattern/trait.Searcher.js
share/doc/rust/html/implementors/collections/str/trait.FromStr.js
share/doc/rust/html/implementors/collections/string/
share/doc/rust/html/implementors/collections/string/trait.ToString.js
share/doc/rust/html/implementors/compiler_builtins/
share/doc/rust/html/implementors/compiler_builtins/float/
share/doc/rust/html/implementors/compiler_builtins/float/trait.Float.js
share/doc/rust/html/implementors/compiler_builtins/int/
share/doc/rust/html/implementors/compiler_builtins/int/trait.Int.js
share/doc/rust/html/implementors/compiler_builtins/int/trait.LargeInt.js
share/doc/rust/html/implementors/core/
share/doc/rust/html/implementors/core/any/
share/doc/rust/html/implementors/core/any/trait.Any.js
@ -2593,8 +2599,6 @@ share/doc/rust/html/implementors/core/hash/trait.Hasher.js
share/doc/rust/html/implementors/core/iter/
share/doc/rust/html/implementors/core/iter/iterator/
share/doc/rust/html/implementors/core/iter/iterator/trait.Iterator.js
share/doc/rust/html/implementors/core/iter/range/
share/doc/rust/html/implementors/core/iter/range/trait.Step.js
share/doc/rust/html/implementors/core/iter/trait.DoubleEndedIterator.js
share/doc/rust/html/implementors/core/iter/trait.ExactSizeIterator.js
share/doc/rust/html/implementors/core/iter/trait.FromIterator.js
@ -2612,8 +2616,6 @@ share/doc/rust/html/implementors/core/iter/traits/trait.Extend.js
share/doc/rust/html/implementors/core/iter/traits/trait.FromIterator.js
share/doc/rust/html/implementors/core/iter/traits/trait.FusedIterator.js
share/doc/rust/html/implementors/core/iter/traits/trait.IntoIterator.js
share/doc/rust/html/implementors/core/iter/traits/trait.Product.js
share/doc/rust/html/implementors/core/iter/traits/trait.Sum.js
share/doc/rust/html/implementors/core/iter/traits/trait.TrustedLen.js
share/doc/rust/html/implementors/core/marker/
share/doc/rust/html/implementors/core/marker/trait.Copy.js
@ -2625,35 +2627,17 @@ share/doc/rust/html/implementors/core/ops/
share/doc/rust/html/implementors/core/ops/arith/
share/doc/rust/html/implementors/core/ops/arith/trait.Add.js
share/doc/rust/html/implementors/core/ops/arith/trait.AddAssign.js
share/doc/rust/html/implementors/core/ops/arith/trait.Div.js
share/doc/rust/html/implementors/core/ops/arith/trait.DivAssign.js
share/doc/rust/html/implementors/core/ops/arith/trait.Mul.js
share/doc/rust/html/implementors/core/ops/arith/trait.MulAssign.js
share/doc/rust/html/implementors/core/ops/arith/trait.Neg.js
share/doc/rust/html/implementors/core/ops/arith/trait.Rem.js
share/doc/rust/html/implementors/core/ops/arith/trait.RemAssign.js
share/doc/rust/html/implementors/core/ops/arith/trait.Sub.js
share/doc/rust/html/implementors/core/ops/arith/trait.SubAssign.js
share/doc/rust/html/implementors/core/ops/bit/
share/doc/rust/html/implementors/core/ops/bit/trait.BitAnd.js
share/doc/rust/html/implementors/core/ops/bit/trait.BitAndAssign.js
share/doc/rust/html/implementors/core/ops/bit/trait.BitOr.js
share/doc/rust/html/implementors/core/ops/bit/trait.BitOrAssign.js
share/doc/rust/html/implementors/core/ops/bit/trait.BitXor.js
share/doc/rust/html/implementors/core/ops/bit/trait.BitXorAssign.js
share/doc/rust/html/implementors/core/ops/bit/trait.Not.js
share/doc/rust/html/implementors/core/ops/bit/trait.Shl.js
share/doc/rust/html/implementors/core/ops/bit/trait.ShlAssign.js
share/doc/rust/html/implementors/core/ops/bit/trait.Shr.js
share/doc/rust/html/implementors/core/ops/bit/trait.ShrAssign.js
share/doc/rust/html/implementors/core/ops/deref/
share/doc/rust/html/implementors/core/ops/deref/trait.Deref.js
share/doc/rust/html/implementors/core/ops/deref/trait.DerefMut.js
share/doc/rust/html/implementors/core/ops/drop/
share/doc/rust/html/implementors/core/ops/drop/trait.Drop.js
share/doc/rust/html/implementors/core/ops/function/
share/doc/rust/html/implementors/core/ops/function/trait.Fn.js
share/doc/rust/html/implementors/core/ops/function/trait.FnMut.js
share/doc/rust/html/implementors/core/ops/function/trait.FnOnce.js
share/doc/rust/html/implementors/core/ops/index/
share/doc/rust/html/implementors/core/ops/index/trait.Index.js
@ -2695,8 +2679,6 @@ share/doc/rust/html/implementors/core/ops/trait.ShrAssign.js
share/doc/rust/html/implementors/core/ops/trait.Sub.js
share/doc/rust/html/implementors/core/ops/trait.SubAssign.js
share/doc/rust/html/implementors/core/ops/trait.Try.js
share/doc/rust/html/implementors/core/ops/try/
share/doc/rust/html/implementors/core/ops/try/trait.Try.js
share/doc/rust/html/implementors/core/ops/unsize/
share/doc/rust/html/implementors/core/ops/unsize/trait.CoerceUnsized.js
share/doc/rust/html/implementors/core/slice/
@ -2709,55 +2691,6 @@ share/doc/rust/html/implementors/core/str/pattern/trait.Pattern.js
share/doc/rust/html/implementors/core/str/pattern/trait.ReverseSearcher.js
share/doc/rust/html/implementors/core/str/pattern/trait.Searcher.js
share/doc/rust/html/implementors/core/str/trait.FromStr.js
share/doc/rust/html/implementors/rand/
share/doc/rust/html/implementors/rand/distributions/
share/doc/rust/html/implementors/rand/distributions/trait.IndependentSample.js
share/doc/rust/html/implementors/rand/distributions/trait.Sample.js
share/doc/rust/html/implementors/rand/reseeding/
share/doc/rust/html/implementors/rand/reseeding/trait.Reseeder.js
share/doc/rust/html/implementors/rand/trait.Rng.js
share/doc/rust/html/implementors/rand/trait.SeedableRng.js
share/doc/rust/html/implementors/rustc_data_structures/
share/doc/rust/html/implementors/rustc_data_structures/array_vec/
share/doc/rust/html/implementors/rustc_data_structures/array_vec/trait.Array.js
share/doc/rust/html/implementors/rustc_data_structures/bitslice/
share/doc/rust/html/implementors/rustc_data_structures/bitslice/trait.BitSlice.js
share/doc/rust/html/implementors/rustc_data_structures/bitslice/trait.BitwiseOperator.js
share/doc/rust/html/implementors/rustc_data_structures/control_flow_graph/
share/doc/rust/html/implementors/rustc_data_structures/control_flow_graph/trait.ControlFlowGraph.js
share/doc/rust/html/implementors/rustc_data_structures/control_flow_graph/trait.GraphPredecessors.js
share/doc/rust/html/implementors/rustc_data_structures/control_flow_graph/trait.GraphSuccessors.js
share/doc/rust/html/implementors/rustc_data_structures/indexed_vec/
share/doc/rust/html/implementors/rustc_data_structures/indexed_vec/trait.Idx.js
share/doc/rust/html/implementors/rustc_data_structures/snapshot_vec/
share/doc/rust/html/implementors/rustc_data_structures/snapshot_vec/trait.SnapshotVecDelegate.js
share/doc/rust/html/implementors/rustc_data_structures/stable_hasher/
share/doc/rust/html/implementors/rustc_data_structures/stable_hasher/trait.HashStable.js
share/doc/rust/html/implementors/rustc_data_structures/stable_hasher/trait.StableHasherResult.js
share/doc/rust/html/implementors/rustc_data_structures/tuple_slice/
share/doc/rust/html/implementors/rustc_data_structures/tuple_slice/trait.TupleSlice.js
share/doc/rust/html/implementors/rustc_data_structures/unify/
share/doc/rust/html/implementors/rustc_data_structures/unify/trait.Combine.js
share/doc/rust/html/implementors/rustc_errors/
share/doc/rust/html/implementors/rustc_errors/emitter/
share/doc/rust/html/implementors/rustc_errors/emitter/trait.Emitter.js
share/doc/rust/html/implementors/rustc_errors/trait.CodeMapper.js
share/doc/rust/html/implementors/serialize/
share/doc/rust/html/implementors/serialize/hex/
share/doc/rust/html/implementors/serialize/hex/trait.FromHex.js
share/doc/rust/html/implementors/serialize/hex/trait.ToHex.js
share/doc/rust/html/implementors/serialize/json/
share/doc/rust/html/implementors/serialize/json/trait.ToJson.js
share/doc/rust/html/implementors/serialize/serialize/
share/doc/rust/html/implementors/serialize/serialize/trait.Decodable.js
share/doc/rust/html/implementors/serialize/serialize/trait.Decoder.js
share/doc/rust/html/implementors/serialize/serialize/trait.Encodable.js
share/doc/rust/html/implementors/serialize/serialize/trait.Encoder.js
share/doc/rust/html/implementors/serialize/serialize/trait.SpecializationError.js
share/doc/rust/html/implementors/serialize/serialize/trait.SpecializedDecoder.js
share/doc/rust/html/implementors/serialize/serialize/trait.SpecializedEncoder.js
share/doc/rust/html/implementors/serialize/serialize/trait.UseSpecializedDecodable.js
share/doc/rust/html/implementors/serialize/serialize/trait.UseSpecializedEncodable.js
share/doc/rust/html/implementors/std/
share/doc/rust/html/implementors/std/any/
share/doc/rust/html/implementors/std/any/trait.Any.js
@ -2829,8 +2762,6 @@ share/doc/rust/html/implementors/std/marker/trait.Copy.js
share/doc/rust/html/implementors/std/marker/trait.Send.js
share/doc/rust/html/implementors/std/marker/trait.Sync.js
share/doc/rust/html/implementors/std/net/
share/doc/rust/html/implementors/std/net/addr/
share/doc/rust/html/implementors/std/net/addr/trait.ToSocketAddrs.js
share/doc/rust/html/implementors/std/net/trait.ToSocketAddrs.js
share/doc/rust/html/implementors/std/ops/
share/doc/rust/html/implementors/std/ops/trait.Add.js
@ -2871,9 +2802,9 @@ share/doc/rust/html/implementors/std/ops/trait.Sub.js
share/doc/rust/html/implementors/std/ops/trait.SubAssign.js
share/doc/rust/html/implementors/std/ops/trait.Try.js
share/doc/rust/html/implementors/std/os/
share/doc/rust/html/implementors/std/os/openbsd/
share/doc/rust/html/implementors/std/os/openbsd/fs/
share/doc/rust/html/implementors/std/os/openbsd/fs/trait.MetadataExt.js
share/doc/rust/html/implementors/std/os/linux/
share/doc/rust/html/implementors/std/os/linux/fs/
share/doc/rust/html/implementors/std/os/linux/fs/trait.MetadataExt.js
share/doc/rust/html/implementors/std/os/unix/
share/doc/rust/html/implementors/std/os/unix/ffi/
share/doc/rust/html/implementors/std/os/unix/ffi/trait.OsStrExt.js
@ -2895,6 +2826,24 @@ share/doc/rust/html/implementors/std/os/unix/process/trait.CommandExt.js
share/doc/rust/html/implementors/std/os/unix/process/trait.ExitStatusExt.js
share/doc/rust/html/implementors/std/os/unix/thread/
share/doc/rust/html/implementors/std/os/unix/thread/trait.JoinHandleExt.js
share/doc/rust/html/implementors/std/os/windows/
share/doc/rust/html/implementors/std/os/windows/ffi/
share/doc/rust/html/implementors/std/os/windows/ffi/trait.OsStrExt.js
share/doc/rust/html/implementors/std/os/windows/ffi/trait.OsStringExt.js
share/doc/rust/html/implementors/std/os/windows/fs/
share/doc/rust/html/implementors/std/os/windows/fs/trait.FileExt.js
share/doc/rust/html/implementors/std/os/windows/fs/trait.MetadataExt.js
share/doc/rust/html/implementors/std/os/windows/fs/trait.OpenOptionsExt.js
share/doc/rust/html/implementors/std/os/windows/io/
share/doc/rust/html/implementors/std/os/windows/io/trait.AsRawHandle.js
share/doc/rust/html/implementors/std/os/windows/io/trait.AsRawSocket.js
share/doc/rust/html/implementors/std/os/windows/io/trait.FromRawHandle.js
share/doc/rust/html/implementors/std/os/windows/io/trait.FromRawSocket.js
share/doc/rust/html/implementors/std/os/windows/io/trait.IntoRawHandle.js
share/doc/rust/html/implementors/std/os/windows/io/trait.IntoRawSocket.js
share/doc/rust/html/implementors/std/os/windows/process/
share/doc/rust/html/implementors/std/os/windows/process/trait.CommandExt.js
share/doc/rust/html/implementors/std/os/windows/process/trait.ExitStatusExt.js
share/doc/rust/html/implementors/std/panic/
share/doc/rust/html/implementors/std/panic/trait.RefUnwindSafe.js
share/doc/rust/html/implementors/std/panic/trait.UnwindSafe.js
@ -2910,73 +2859,9 @@ share/doc/rust/html/implementors/std/str/pattern/trait.Searcher.js
share/doc/rust/html/implementors/std/str/trait.FromStr.js
share/doc/rust/html/implementors/std/string/
share/doc/rust/html/implementors/std/string/trait.ToString.js
share/doc/rust/html/implementors/std/sys/
share/doc/rust/html/implementors/std/sys/imp/
share/doc/rust/html/implementors/std/sys/imp/ext/
share/doc/rust/html/implementors/std/sys/imp/ext/ffi/
share/doc/rust/html/implementors/std/sys/imp/ext/ffi/trait.OsStrExt.js
share/doc/rust/html/implementors/std/sys/imp/ext/ffi/trait.OsStringExt.js
share/doc/rust/html/implementors/std/sys/imp/ext/fs/
share/doc/rust/html/implementors/std/sys/imp/ext/fs/trait.DirBuilderExt.js
share/doc/rust/html/implementors/std/sys/imp/ext/fs/trait.DirEntryExt.js
share/doc/rust/html/implementors/std/sys/imp/ext/fs/trait.FileExt.js
share/doc/rust/html/implementors/std/sys/imp/ext/fs/trait.FileTypeExt.js
share/doc/rust/html/implementors/std/sys/imp/ext/fs/trait.MetadataExt.js
share/doc/rust/html/implementors/std/sys/imp/ext/fs/trait.OpenOptionsExt.js
share/doc/rust/html/implementors/std/sys/imp/ext/fs/trait.PermissionsExt.js
share/doc/rust/html/implementors/std/sys/imp/ext/io/
share/doc/rust/html/implementors/std/sys/imp/ext/io/trait.AsRawFd.js
share/doc/rust/html/implementors/std/sys/imp/ext/io/trait.FromRawFd.js
share/doc/rust/html/implementors/std/sys/imp/ext/io/trait.IntoRawFd.js
share/doc/rust/html/implementors/std/sys/imp/ext/process/
share/doc/rust/html/implementors/std/sys/imp/ext/process/trait.CommandExt.js
share/doc/rust/html/implementors/std/sys/imp/ext/process/trait.ExitStatusExt.js
share/doc/rust/html/implementors/std/sys/imp/ext/thread/
share/doc/rust/html/implementors/std/sys/imp/ext/thread/trait.JoinHandleExt.js
share/doc/rust/html/implementors/std_unicode/
share/doc/rust/html/implementors/std_unicode/str/
share/doc/rust/html/implementors/std_unicode/str/trait.UnicodeStr.js
share/doc/rust/html/implementors/std_unicode/u_str/
share/doc/rust/html/implementors/std_unicode/u_str/trait.UnicodeStr.js
share/doc/rust/html/implementors/syntax/
share/doc/rust/html/implementors/syntax/attr/
share/doc/rust/html/implementors/syntax/attr/trait.HasAttrs.js
share/doc/rust/html/implementors/syntax/codemap/
share/doc/rust/html/implementors/syntax/codemap/trait.FileLoader.js
share/doc/rust/html/implementors/syntax/ext/
share/doc/rust/html/implementors/syntax/ext/base/
share/doc/rust/html/implementors/syntax/ext/base/trait.AttrProcMacro.js
share/doc/rust/html/implementors/syntax/ext/base/trait.IdentMacroExpander.js
share/doc/rust/html/implementors/syntax/ext/base/trait.MacResult.js
share/doc/rust/html/implementors/syntax/ext/base/trait.MultiItemDecorator.js
share/doc/rust/html/implementors/syntax/ext/base/trait.MultiItemModifier.js
share/doc/rust/html/implementors/syntax/ext/base/trait.ProcMacro.js
share/doc/rust/html/implementors/syntax/ext/base/trait.Resolver.js
share/doc/rust/html/implementors/syntax/ext/base/trait.TTMacroExpander.js
share/doc/rust/html/implementors/syntax/ext/build/
share/doc/rust/html/implementors/syntax/ext/build/trait.AstBuilder.js
share/doc/rust/html/implementors/syntax/ext/quote/
share/doc/rust/html/implementors/syntax/ext/quote/rt/
share/doc/rust/html/implementors/syntax/ext/quote/rt/trait.ExtParseUtils.js
share/doc/rust/html/implementors/syntax/ext/quote/rt/trait.ToTokens.js
share/doc/rust/html/implementors/syntax/fold/
share/doc/rust/html/implementors/syntax/fold/trait.Folder.js
share/doc/rust/html/implementors/syntax/parse/
share/doc/rust/html/implementors/syntax/parse/obsolete/
share/doc/rust/html/implementors/syntax/parse/obsolete/trait.ParserObsoleteMethods.js
share/doc/rust/html/implementors/syntax/print/
share/doc/rust/html/implementors/syntax/print/pprust/
share/doc/rust/html/implementors/syntax/print/pprust/trait.PpAnn.js
share/doc/rust/html/implementors/syntax/print/pprust/trait.PrintState.js
share/doc/rust/html/implementors/syntax/util/
share/doc/rust/html/implementors/syntax/util/move_map/
share/doc/rust/html/implementors/syntax/util/move_map/trait.MoveMap.js
share/doc/rust/html/implementors/syntax/visit/
share/doc/rust/html/implementors/syntax/visit/trait.Visitor.js
share/doc/rust/html/implementors/syntax_pos/
share/doc/rust/html/implementors/syntax_pos/trait.Pos.js
share/doc/rust/html/implementors/term/
share/doc/rust/html/implementors/term/trait.Terminal.js
share/doc/rust/html/index.html
share/doc/rust/html/intro.html
share/doc/rust/html/main.css
@ -3056,6 +2941,7 @@ share/doc/rust/html/nomicon/vec-push-pop.html
share/doc/rust/html/nomicon/vec-raw.html
share/doc/rust/html/nomicon/vec-zsts.html
share/doc/rust/html/nomicon/vec.html
share/doc/rust/html/nomicon/what-unsafe-does.html
share/doc/rust/html/nomicon/working-with-unsafe.html
share/doc/rust/html/normalize.css
share/doc/rust/html/not_found.html
@ -3108,6 +2994,7 @@ share/doc/rust/html/reference/comments.html
share/doc/rust/html/reference/crates-and-source-files.html
share/doc/rust/html/reference/expressions.html
share/doc/rust/html/reference/favicon.png
share/doc/rust/html/reference/glossory.html
share/doc/rust/html/reference/highlight.css
share/doc/rust/html/reference/highlight.js
share/doc/rust/html/reference/identifiers.html
@ -3118,6 +3005,7 @@ share/doc/rust/html/reference/introduction.html
share/doc/rust/html/reference/items-and-attributes.html
share/doc/rust/html/reference/items.html
share/doc/rust/html/reference/jquery.js
share/doc/rust/html/reference/keywords.html
share/doc/rust/html/reference/lexical-structure.html
share/doc/rust/html/reference/linkage.html
share/doc/rust/html/reference/macros-by-example.html
@ -3158,8 +3046,33 @@ share/doc/rust/html/reference/whitespace.html
share/doc/rust/html/rust.css
share/doc/rust/html/rust.html
share/doc/rust/html/rustc-ux-guidelines.html
share/doc/rust/html/rustdoc/
share/doc/rust/html/rustdoc.css
share/doc/rust/html/rustdoc.html
share/doc/rust/html/rustdoc/_FontAwesome/
share/doc/rust/html/rustdoc/_FontAwesome/css/
share/doc/rust/html/rustdoc/_FontAwesome/css/font-awesome.css
share/doc/rust/html/rustdoc/_FontAwesome/fonts/
share/doc/rust/html/rustdoc/_FontAwesome/fonts/FontAwesome.ttf
share/doc/rust/html/rustdoc/_FontAwesome/fonts/fontawesome-webfont.eot
share/doc/rust/html/rustdoc/_FontAwesome/fonts/fontawesome-webfont.svg
share/doc/rust/html/rustdoc/_FontAwesome/fonts/fontawesome-webfont.ttf
share/doc/rust/html/rustdoc/_FontAwesome/fonts/fontawesome-webfont.woff
share/doc/rust/html/rustdoc/_FontAwesome/fonts/fontawesome-webfont.woff2
share/doc/rust/html/rustdoc/book.css
share/doc/rust/html/rustdoc/book.js
share/doc/rust/html/rustdoc/command-line-arguments.html
share/doc/rust/html/rustdoc/documentation-tests.html
share/doc/rust/html/rustdoc/favicon.png
share/doc/rust/html/rustdoc/highlight.css
share/doc/rust/html/rustdoc/highlight.js
share/doc/rust/html/rustdoc/index.html
share/doc/rust/html/rustdoc/jquery.js
share/doc/rust/html/rustdoc/passes.html
share/doc/rust/html/rustdoc/print.html
share/doc/rust/html/rustdoc/the-doc-attribute.html
share/doc/rust/html/rustdoc/tomorrow-night.css
share/doc/rust/html/rustdoc/what-is-rustdoc.html
share/doc/rust/html/search-index.js
share/doc/rust/html/src/
share/doc/rust/html/src/alloc/
@ -3334,11 +3247,11 @@ share/doc/rust/html/src/std/net/tcp.rs.html
share/doc/rust/html/src/std/net/udp.rs.html
share/doc/rust/html/src/std/num.rs.html
share/doc/rust/html/src/std/os/
share/doc/rust/html/src/std/os/linux/
share/doc/rust/html/src/std/os/linux/fs.rs.html
share/doc/rust/html/src/std/os/linux/mod.rs.html
share/doc/rust/html/src/std/os/linux/raw.rs.html
share/doc/rust/html/src/std/os/mod.rs.html
share/doc/rust/html/src/std/os/openbsd/
share/doc/rust/html/src/std/os/openbsd/fs.rs.html
share/doc/rust/html/src/std/os/openbsd/mod.rs.html
share/doc/rust/html/src/std/os/openbsd/raw.rs.html
share/doc/rust/html/src/std/os/raw.rs.html
share/doc/rust/html/src/std/panic.rs.html
share/doc/rust/html/src/std/panicking.rs.html
@ -3413,6 +3326,17 @@ share/doc/rust/html/src/std/sys/unix/thread.rs.html
share/doc/rust/html/src/std/sys/unix/thread_local.rs.html
share/doc/rust/html/src/std/sys/unix/time.rs.html
share/doc/rust/html/src/std/sys/unix/weak.rs.html
share/doc/rust/html/src/std/sys/windows/
share/doc/rust/html/src/std/sys/windows/c.rs.html
share/doc/rust/html/src/std/sys/windows/compat.rs.html
share/doc/rust/html/src/std/sys/windows/ext/
share/doc/rust/html/src/std/sys/windows/ext/ffi.rs.html
share/doc/rust/html/src/std/sys/windows/ext/fs.rs.html
share/doc/rust/html/src/std/sys/windows/ext/io.rs.html
share/doc/rust/html/src/std/sys/windows/ext/mod.rs.html
share/doc/rust/html/src/std/sys/windows/ext/process.rs.html
share/doc/rust/html/src/std/sys/windows/ext/raw.rs.html
share/doc/rust/html/src/std/sys/windows/ext/thread.rs.html
share/doc/rust/html/src/std/sys_common/
share/doc/rust/html/src/std/sys_common/at_exit_imp.rs.html
share/doc/rust/html/src/std/sys_common/backtrace.rs.html
@ -4101,6 +4025,7 @@ share/doc/rust/html/std/fmt/trait.UpperHex.html
share/doc/rust/html/std/fmt/trait.Write.html
share/doc/rust/html/std/fmt/type.Result.html
share/doc/rust/html/std/fmt/write.v.html
share/doc/rust/html/std/fn.t.html
share/doc/rust/html/std/format.m.html
share/doc/rust/html/std/format_args.m.html
share/doc/rust/html/std/fs/
@ -4925,6 +4850,7 @@ share/doc/rust/html/std/mem/fn.swap.html
share/doc/rust/html/std/mem/fn.transmute.html
share/doc/rust/html/std/mem/fn.transmute_copy.html
share/doc/rust/html/std/mem/fn.uninitialized.html
share/doc/rust/html/std/mem/fn.unreachable.html
share/doc/rust/html/std/mem/fn.zeroed.html
share/doc/rust/html/std/mem/forget.v.html
share/doc/rust/html/std/mem/index.html
@ -4941,6 +4867,7 @@ share/doc/rust/html/std/mem/transmute.v.html
share/doc/rust/html/std/mem/transmute_copy.v.html
share/doc/rust/html/std/mem/uninitialized.v.html
share/doc/rust/html/std/mem/union.ManuallyDrop.html
share/doc/rust/html/std/mem/unreachable.v.html
share/doc/rust/html/std/mem/zeroed.v.html
share/doc/rust/html/std/module_path.m.html
share/doc/rust/html/std/net/
@ -5125,39 +5052,52 @@ share/doc/rust/html/std/option/struct.IterMut.html
share/doc/rust/html/std/option_env.m.html
share/doc/rust/html/std/os/
share/doc/rust/html/std/os/index.html
share/doc/rust/html/std/os/openbsd/
share/doc/rust/html/std/os/openbsd/fs/
share/doc/rust/html/std/os/openbsd/fs/MetadataExt.t.html
share/doc/rust/html/std/os/openbsd/fs/index.html
share/doc/rust/html/std/os/openbsd/fs/sidebar-items.js
share/doc/rust/html/std/os/openbsd/fs/trait.MetadataExt.html
share/doc/rust/html/std/os/openbsd/index.html
share/doc/rust/html/std/os/openbsd/raw/
share/doc/rust/html/std/os/openbsd/raw/blkcnt_t.t.html
share/doc/rust/html/std/os/openbsd/raw/blksize_t.t.html
share/doc/rust/html/std/os/openbsd/raw/dev_t.t.html
share/doc/rust/html/std/os/openbsd/raw/fflags_t.t.html
share/doc/rust/html/std/os/openbsd/raw/index.html
share/doc/rust/html/std/os/openbsd/raw/ino_t.t.html
share/doc/rust/html/std/os/openbsd/raw/mode_t.t.html
share/doc/rust/html/std/os/openbsd/raw/nlink_t.t.html
share/doc/rust/html/std/os/openbsd/raw/off_t.t.html
share/doc/rust/html/std/os/openbsd/raw/pthread_t.t.html
share/doc/rust/html/std/os/openbsd/raw/sidebar-items.js
share/doc/rust/html/std/os/openbsd/raw/stat.t.html
share/doc/rust/html/std/os/openbsd/raw/struct.stat.html
share/doc/rust/html/std/os/openbsd/raw/time_t.t.html
share/doc/rust/html/std/os/openbsd/raw/type.blkcnt_t.html
share/doc/rust/html/std/os/openbsd/raw/type.blksize_t.html
share/doc/rust/html/std/os/openbsd/raw/type.dev_t.html
share/doc/rust/html/std/os/openbsd/raw/type.fflags_t.html
share/doc/rust/html/std/os/openbsd/raw/type.ino_t.html
share/doc/rust/html/std/os/openbsd/raw/type.mode_t.html
share/doc/rust/html/std/os/openbsd/raw/type.nlink_t.html
share/doc/rust/html/std/os/openbsd/raw/type.off_t.html
share/doc/rust/html/std/os/openbsd/raw/type.pthread_t.html
share/doc/rust/html/std/os/openbsd/raw/type.time_t.html
share/doc/rust/html/std/os/openbsd/sidebar-items.js
share/doc/rust/html/std/os/linux/
share/doc/rust/html/std/os/linux/fs/
share/doc/rust/html/std/os/linux/fs/MetadataExt.t.html
share/doc/rust/html/std/os/linux/fs/index.html
share/doc/rust/html/std/os/linux/fs/sidebar-items.js
share/doc/rust/html/std/os/linux/fs/trait.MetadataExt.html
share/doc/rust/html/std/os/linux/index.html
share/doc/rust/html/std/os/linux/raw/
share/doc/rust/html/std/os/linux/raw/arch/
share/doc/rust/html/std/os/linux/raw/arch/blkcnt_t.t.html
share/doc/rust/html/std/os/linux/raw/arch/blksize_t.t.html
share/doc/rust/html/std/os/linux/raw/arch/ino_t.t.html
share/doc/rust/html/std/os/linux/raw/arch/nlink_t.t.html
share/doc/rust/html/std/os/linux/raw/arch/off_t.t.html
share/doc/rust/html/std/os/linux/raw/arch/stat.t.html
share/doc/rust/html/std/os/linux/raw/arch/struct.stat.html
share/doc/rust/html/std/os/linux/raw/arch/time_t.t.html
share/doc/rust/html/std/os/linux/raw/arch/type.blkcnt_t.html
share/doc/rust/html/std/os/linux/raw/arch/type.blksize_t.html
share/doc/rust/html/std/os/linux/raw/arch/type.ino_t.html
share/doc/rust/html/std/os/linux/raw/arch/type.nlink_t.html
share/doc/rust/html/std/os/linux/raw/arch/type.off_t.html
share/doc/rust/html/std/os/linux/raw/arch/type.time_t.html
share/doc/rust/html/std/os/linux/raw/blkcnt_t.t.html
share/doc/rust/html/std/os/linux/raw/blksize_t.t.html
share/doc/rust/html/std/os/linux/raw/dev_t.t.html
share/doc/rust/html/std/os/linux/raw/index.html
share/doc/rust/html/std/os/linux/raw/ino_t.t.html
share/doc/rust/html/std/os/linux/raw/mode_t.t.html
share/doc/rust/html/std/os/linux/raw/nlink_t.t.html
share/doc/rust/html/std/os/linux/raw/off_t.t.html
share/doc/rust/html/std/os/linux/raw/pthread_t.t.html
share/doc/rust/html/std/os/linux/raw/sidebar-items.js
share/doc/rust/html/std/os/linux/raw/stat.t.html
share/doc/rust/html/std/os/linux/raw/struct.stat.html
share/doc/rust/html/std/os/linux/raw/time_t.t.html
share/doc/rust/html/std/os/linux/raw/type.blkcnt_t.html
share/doc/rust/html/std/os/linux/raw/type.blksize_t.html
share/doc/rust/html/std/os/linux/raw/type.dev_t.html
share/doc/rust/html/std/os/linux/raw/type.ino_t.html
share/doc/rust/html/std/os/linux/raw/type.mode_t.html
share/doc/rust/html/std/os/linux/raw/type.nlink_t.html
share/doc/rust/html/std/os/linux/raw/type.off_t.html
share/doc/rust/html/std/os/linux/raw/type.pthread_t.html
share/doc/rust/html/std/os/linux/raw/type.time_t.html
share/doc/rust/html/std/os/linux/sidebar-items.js
share/doc/rust/html/std/os/raw/
share/doc/rust/html/std/os/raw/c_char.t.html
share/doc/rust/html/std/os/raw/c_double.t.html
@ -5287,6 +5227,70 @@ share/doc/rust/html/std/os/unix/thread/index.html
share/doc/rust/html/std/os/unix/thread/sidebar-items.js
share/doc/rust/html/std/os/unix/thread/trait.JoinHandleExt.html
share/doc/rust/html/std/os/unix/thread/type.RawPthread.html
share/doc/rust/html/std/os/windows/
share/doc/rust/html/std/os/windows/ffi/
share/doc/rust/html/std/os/windows/ffi/EncodeWide.t.html
share/doc/rust/html/std/os/windows/ffi/OsStrExt.t.html
share/doc/rust/html/std/os/windows/ffi/OsStringExt.t.html
share/doc/rust/html/std/os/windows/ffi/index.html
share/doc/rust/html/std/os/windows/ffi/sidebar-items.js
share/doc/rust/html/std/os/windows/ffi/struct.EncodeWide.html
share/doc/rust/html/std/os/windows/ffi/trait.OsStrExt.html
share/doc/rust/html/std/os/windows/ffi/trait.OsStringExt.html
share/doc/rust/html/std/os/windows/fs/
share/doc/rust/html/std/os/windows/fs/FileExt.t.html
share/doc/rust/html/std/os/windows/fs/MetadataExt.t.html
share/doc/rust/html/std/os/windows/fs/OpenOptionsExt.t.html
share/doc/rust/html/std/os/windows/fs/fn.symlink_dir.html
share/doc/rust/html/std/os/windows/fs/fn.symlink_file.html
share/doc/rust/html/std/os/windows/fs/index.html
share/doc/rust/html/std/os/windows/fs/sidebar-items.js
share/doc/rust/html/std/os/windows/fs/symlink_dir.v.html
share/doc/rust/html/std/os/windows/fs/symlink_file.v.html
share/doc/rust/html/std/os/windows/fs/trait.FileExt.html
share/doc/rust/html/std/os/windows/fs/trait.MetadataExt.html
share/doc/rust/html/std/os/windows/fs/trait.OpenOptionsExt.html
share/doc/rust/html/std/os/windows/index.html
share/doc/rust/html/std/os/windows/io/
share/doc/rust/html/std/os/windows/io/AsRawHandle.t.html
share/doc/rust/html/std/os/windows/io/AsRawSocket.t.html
share/doc/rust/html/std/os/windows/io/FromRawHandle.t.html
share/doc/rust/html/std/os/windows/io/FromRawSocket.t.html
share/doc/rust/html/std/os/windows/io/IntoRawHandle.t.html
share/doc/rust/html/std/os/windows/io/IntoRawSocket.t.html
share/doc/rust/html/std/os/windows/io/RawHandle.t.html
share/doc/rust/html/std/os/windows/io/RawSocket.t.html
share/doc/rust/html/std/os/windows/io/index.html
share/doc/rust/html/std/os/windows/io/sidebar-items.js
share/doc/rust/html/std/os/windows/io/trait.AsRawHandle.html
share/doc/rust/html/std/os/windows/io/trait.AsRawSocket.html
share/doc/rust/html/std/os/windows/io/trait.FromRawHandle.html
share/doc/rust/html/std/os/windows/io/trait.FromRawSocket.html
share/doc/rust/html/std/os/windows/io/trait.IntoRawHandle.html
share/doc/rust/html/std/os/windows/io/trait.IntoRawSocket.html
share/doc/rust/html/std/os/windows/io/type.RawHandle.html
share/doc/rust/html/std/os/windows/io/type.RawSocket.html
share/doc/rust/html/std/os/windows/prelude/
share/doc/rust/html/std/os/windows/prelude/index.html
share/doc/rust/html/std/os/windows/prelude/sidebar-items.js
share/doc/rust/html/std/os/windows/process/
share/doc/rust/html/std/os/windows/process/CommandExt.t.html
share/doc/rust/html/std/os/windows/process/ExitStatusExt.t.html
share/doc/rust/html/std/os/windows/process/index.html
share/doc/rust/html/std/os/windows/process/sidebar-items.js
share/doc/rust/html/std/os/windows/process/trait.CommandExt.html
share/doc/rust/html/std/os/windows/process/trait.ExitStatusExt.html
share/doc/rust/html/std/os/windows/raw/
share/doc/rust/html/std/os/windows/raw/HANDLE.t.html
share/doc/rust/html/std/os/windows/raw/SOCKET.t.html
share/doc/rust/html/std/os/windows/raw/index.html
share/doc/rust/html/std/os/windows/raw/sidebar-items.js
share/doc/rust/html/std/os/windows/raw/type.HANDLE.html
share/doc/rust/html/std/os/windows/raw/type.SOCKET.html
share/doc/rust/html/std/os/windows/sidebar-items.js
share/doc/rust/html/std/os/windows/thread/
share/doc/rust/html/std/os/windows/thread/index.html
share/doc/rust/html/std/os/windows/thread/sidebar-items.js
share/doc/rust/html/std/panic/
share/doc/rust/html/std/panic.m.html
share/doc/rust/html/std/panic/AssertUnwindSafe.t.html
@ -5360,6 +5364,8 @@ share/doc/rust/html/std/prim_f32/
share/doc/rust/html/std/prim_f32/index.html
share/doc/rust/html/std/prim_f64/
share/doc/rust/html/std/prim_f64/index.html
share/doc/rust/html/std/prim_fn/
share/doc/rust/html/std/prim_fn/index.html
share/doc/rust/html/std/prim_i128/
share/doc/rust/html/std/prim_i128/index.html
share/doc/rust/html/std/prim_i16/
@ -5374,6 +5380,8 @@ share/doc/rust/html/std/prim_isize/
share/doc/rust/html/std/prim_isize/index.html
share/doc/rust/html/std/prim_pointer/
share/doc/rust/html/std/prim_pointer/index.html
share/doc/rust/html/std/prim_ref/
share/doc/rust/html/std/prim_ref/index.html
share/doc/rust/html/std/prim_slice/
share/doc/rust/html/std/prim_slice/index.html
share/doc/rust/html/std/prim_str/
@ -5397,6 +5405,7 @@ share/doc/rust/html/std/primitive.bool.html
share/doc/rust/html/std/primitive.char.html
share/doc/rust/html/std/primitive.f32.html
share/doc/rust/html/std/primitive.f64.html
share/doc/rust/html/std/primitive.fn.html
share/doc/rust/html/std/primitive.i128.html
share/doc/rust/html/std/primitive.i16.html
share/doc/rust/html/std/primitive.i32.html
@ -5404,6 +5413,7 @@ share/doc/rust/html/std/primitive.i64.html
share/doc/rust/html/std/primitive.i8.html
share/doc/rust/html/std/primitive.isize.html
share/doc/rust/html/std/primitive.pointer.html
share/doc/rust/html/std/primitive.reference.html
share/doc/rust/html/std/primitive.slice.html
share/doc/rust/html/std/primitive.str.html
share/doc/rust/html/std/primitive.tuple.html
@ -5489,6 +5499,7 @@ share/doc/rust/html/std/rc/index.html
share/doc/rust/html/std/rc/sidebar-items.js
share/doc/rust/html/std/rc/struct.Rc.html
share/doc/rust/html/std/rc/struct.Weak.html
share/doc/rust/html/std/reference.t.html
share/doc/rust/html/std/result/
share/doc/rust/html/std/result/IntoIter.t.html
share/doc/rust/html/std/result/Iter.t.html
@ -5868,6 +5879,60 @@ share/doc/rust/html/std/sys/imp/ext/thread/RawPthread.t.html
share/doc/rust/html/std/sys/imp/ext/thread/index.html
share/doc/rust/html/std/sys/imp/ext/thread/trait.JoinHandleExt.html
share/doc/rust/html/std/sys/imp/ext/thread/type.RawPthread.html
share/doc/rust/html/std/sys/windows_ext/
share/doc/rust/html/std/sys/windows_ext/ffi/
share/doc/rust/html/std/sys/windows_ext/ffi/OsStrExt.t.html
share/doc/rust/html/std/sys/windows_ext/ffi/OsStringExt.t.html
share/doc/rust/html/std/sys/windows_ext/ffi/index.html
share/doc/rust/html/std/sys/windows_ext/ffi/trait.OsStrExt.html
share/doc/rust/html/std/sys/windows_ext/ffi/trait.OsStringExt.html
share/doc/rust/html/std/sys/windows_ext/fs/
share/doc/rust/html/std/sys/windows_ext/fs/FileExt.t.html
share/doc/rust/html/std/sys/windows_ext/fs/MetadataExt.t.html
share/doc/rust/html/std/sys/windows_ext/fs/OpenOptionsExt.t.html
share/doc/rust/html/std/sys/windows_ext/fs/fn.symlink_dir.html
share/doc/rust/html/std/sys/windows_ext/fs/fn.symlink_file.html
share/doc/rust/html/std/sys/windows_ext/fs/index.html
share/doc/rust/html/std/sys/windows_ext/fs/symlink_dir.v.html
share/doc/rust/html/std/sys/windows_ext/fs/symlink_file.v.html
share/doc/rust/html/std/sys/windows_ext/fs/trait.FileExt.html
share/doc/rust/html/std/sys/windows_ext/fs/trait.MetadataExt.html
share/doc/rust/html/std/sys/windows_ext/fs/trait.OpenOptionsExt.html
share/doc/rust/html/std/sys/windows_ext/index.html
share/doc/rust/html/std/sys/windows_ext/io/
share/doc/rust/html/std/sys/windows_ext/io/AsRawHandle.t.html
share/doc/rust/html/std/sys/windows_ext/io/AsRawSocket.t.html
share/doc/rust/html/std/sys/windows_ext/io/FromRawHandle.t.html
share/doc/rust/html/std/sys/windows_ext/io/FromRawSocket.t.html
share/doc/rust/html/std/sys/windows_ext/io/IntoRawHandle.t.html
share/doc/rust/html/std/sys/windows_ext/io/IntoRawSocket.t.html
share/doc/rust/html/std/sys/windows_ext/io/RawHandle.t.html
share/doc/rust/html/std/sys/windows_ext/io/RawSocket.t.html
share/doc/rust/html/std/sys/windows_ext/io/index.html
share/doc/rust/html/std/sys/windows_ext/io/trait.AsRawHandle.html
share/doc/rust/html/std/sys/windows_ext/io/trait.AsRawSocket.html
share/doc/rust/html/std/sys/windows_ext/io/trait.FromRawHandle.html
share/doc/rust/html/std/sys/windows_ext/io/trait.FromRawSocket.html
share/doc/rust/html/std/sys/windows_ext/io/trait.IntoRawHandle.html
share/doc/rust/html/std/sys/windows_ext/io/trait.IntoRawSocket.html
share/doc/rust/html/std/sys/windows_ext/io/type.RawHandle.html
share/doc/rust/html/std/sys/windows_ext/io/type.RawSocket.html
share/doc/rust/html/std/sys/windows_ext/prelude/
share/doc/rust/html/std/sys/windows_ext/prelude/index.html
share/doc/rust/html/std/sys/windows_ext/process/
share/doc/rust/html/std/sys/windows_ext/process/CommandExt.t.html
share/doc/rust/html/std/sys/windows_ext/process/ExitStatusExt.t.html
share/doc/rust/html/std/sys/windows_ext/process/index.html
share/doc/rust/html/std/sys/windows_ext/process/trait.CommandExt.html
share/doc/rust/html/std/sys/windows_ext/process/trait.ExitStatusExt.html
share/doc/rust/html/std/sys/windows_ext/raw/
share/doc/rust/html/std/sys/windows_ext/raw/HANDLE.t.html
share/doc/rust/html/std/sys/windows_ext/raw/SOCKET.t.html
share/doc/rust/html/std/sys/windows_ext/raw/index.html
share/doc/rust/html/std/sys/windows_ext/raw/type.HANDLE.html
share/doc/rust/html/std/sys/windows_ext/raw/type.SOCKET.html
share/doc/rust/html/std/sys/windows_ext/thread/
share/doc/rust/html/std/sys/windows_ext/thread/index.html
share/doc/rust/html/std/sys_common/
share/doc/rust/html/std/sys_common/poison/
share/doc/rust/html/std/sys_common/poison/LockResult.t.html
@ -5878,6 +5943,9 @@ share/doc/rust/html/std/sys_common/poison/enum.TryLockError.html
share/doc/rust/html/std/sys_common/poison/struct.PoisonError.html
share/doc/rust/html/std/sys_common/poison/type.LockResult.html
share/doc/rust/html/std/sys_common/poison/type.TryLockResult.html
share/doc/rust/html/std/sys_common/wtf8/
share/doc/rust/html/std/sys_common/wtf8/EncodeWide.t.html
share/doc/rust/html/std/sys_common/wtf8/struct.EncodeWide.html
share/doc/rust/html/std/thread/
share/doc/rust/html/std/thread/AccessError.t.html
share/doc/rust/html/std/thread/Builder.t.html
@ -5994,6 +6062,7 @@ share/doc/rust/html/std/usize/sidebar-items.js
share/doc/rust/html/std/vec/
share/doc/rust/html/std/vec.m.html
share/doc/rust/html/std/vec/Drain.t.html
share/doc/rust/html/std/vec/DrainFilter.t.html
share/doc/rust/html/std/vec/IntoIter.t.html
share/doc/rust/html/std/vec/PlaceBack.t.html
share/doc/rust/html/std/vec/Splice.t.html
@ -6001,6 +6070,7 @@ share/doc/rust/html/std/vec/Vec.t.html
share/doc/rust/html/std/vec/index.html
share/doc/rust/html/std/vec/sidebar-items.js
share/doc/rust/html/std/vec/struct.Drain.html
share/doc/rust/html/std/vec/struct.DrainFilter.html
share/doc/rust/html/std/vec/struct.IntoIter.html
share/doc/rust/html/std/vec/struct.PlaceBack.html
share/doc/rust/html/std/vec/struct.Splice.html
@ -6133,6 +6203,7 @@ share/doc/rust/html/unstable-book/language-features/abi-x86-interrupt.html
share/doc/rust/html/unstable-book/language-features/advanced-slice-patterns.html
share/doc/rust/html/unstable-book/language-features/allocator-internals.html
share/doc/rust/html/unstable-book/language-features/allow-fail.html
share/doc/rust/html/unstable-book/language-features/allow-internal-unsafe.html
share/doc/rust/html/unstable-book/language-features/allow-internal-unstable.html
share/doc/rust/html/unstable-book/language-features/asm.html
share/doc/rust/html/unstable-book/language-features/associated-type-defaults.html
@ -6153,10 +6224,12 @@ share/doc/rust/html/unstable-book/language-features/custom-attribute.html
share/doc/rust/html/unstable-book/language-features/custom-derive.html
share/doc/rust/html/unstable-book/language-features/decl-macro.html
share/doc/rust/html/unstable-book/language-features/default-type-parameter-fallback.html
share/doc/rust/html/unstable-book/language-features/doc-cfg.html
share/doc/rust/html/unstable-book/language-features/drop-types-in-const.html
share/doc/rust/html/unstable-book/language-features/dropck-eyepatch.html
share/doc/rust/html/unstable-book/language-features/dropck-parametricity.html
share/doc/rust/html/unstable-book/language-features/exclusive-range-pattern.html
share/doc/rust/html/unstable-book/language-features/fn-must-use.html
share/doc/rust/html/unstable-book/language-features/fundamental.html
share/doc/rust/html/unstable-book/language-features/generic-param-attrs.html
share/doc/rust/html/unstable-book/language-features/global-allocator.html
@ -6197,7 +6270,6 @@ share/doc/rust/html/unstable-book/language-features/repr-align.html
share/doc/rust/html/unstable-book/language-features/repr-simd.html
share/doc/rust/html/unstable-book/language-features/rustc-attrs.html
share/doc/rust/html/unstable-book/language-features/rustc-diagnostic-macros.html
share/doc/rust/html/unstable-book/language-features/rvalue-static-promotion.html
share/doc/rust/html/unstable-book/language-features/sanitizer-runtime.html
share/doc/rust/html/unstable-book/language-features/simd-ffi.html
share/doc/rust/html/unstable-book/language-features/simd.html
@ -6232,7 +6304,7 @@ share/doc/rust/html/unstable-book/library-features/coerce-unsized.html
share/doc/rust/html/unstable-book/library-features/collection-placement.html
share/doc/rust/html/unstable-book/library-features/collections-range.html
share/doc/rust/html/unstable-book/library-features/collections.html
share/doc/rust/html/unstable-book/library-features/compiler-fences.html
share/doc/rust/html/unstable-book/library-features/compiler-builtins-lib.html
share/doc/rust/html/unstable-book/library-features/concat-idents-macro.html
share/doc/rust/html/unstable-book/library-features/core-char-ext.html
share/doc/rust/html/unstable-book/library-features/core-float.html
@ -6246,7 +6318,7 @@ share/doc/rust/html/unstable-book/library-features/dec2flt.html
share/doc/rust/html/unstable-book/library-features/decode-utf8.html
share/doc/rust/html/unstable-book/library-features/derive-clone-copy.html
share/doc/rust/html/unstable-book/library-features/derive-eq.html
share/doc/rust/html/unstable-book/library-features/discriminant-value.html
share/doc/rust/html/unstable-book/library-features/drain-filter.html
share/doc/rust/html/unstable-book/library-features/error-type-id.html
share/doc/rust/html/unstable-book/library-features/exact-size-is-empty.html
share/doc/rust/html/unstable-book/library-features/fd-read.html
@ -6271,7 +6343,6 @@ share/doc/rust/html/unstable-book/library-features/io-error-internals.html
share/doc/rust/html/unstable-book/library-features/io.html
share/doc/rust/html/unstable-book/library-features/ip.html
share/doc/rust/html/unstable-book/library-features/iter-rfind.html
share/doc/rust/html/unstable-book/library-features/iterator-for-each.html
share/doc/rust/html/unstable-book/library-features/iterator-step-by.html
share/doc/rust/html/unstable-book/library-features/libstd-io-internals.html
share/doc/rust/html/unstable-book/library-features/libstd-sys-internals.html
@ -6280,12 +6351,10 @@ share/doc/rust/html/unstable-book/library-features/linked-list-extras.html
share/doc/rust/html/unstable-book/library-features/lookup-host.html
share/doc/rust/html/unstable-book/library-features/mpsc-select.html
share/doc/rust/html/unstable-book/library-features/n16.html
share/doc/rust/html/unstable-book/library-features/needs-drop.html
share/doc/rust/html/unstable-book/library-features/never-type-impls.html
share/doc/rust/html/unstable-book/library-features/nonzero.html
share/doc/rust/html/unstable-book/library-features/offset-to.html
share/doc/rust/html/unstable-book/library-features/once-poison.html
share/doc/rust/html/unstable-book/library-features/ord-max-min.html
share/doc/rust/html/unstable-book/library-features/panic-abort.html
share/doc/rust/html/unstable-book/library-features/panic-col.html
share/doc/rust/html/unstable-book/library-features/panic-unwind.html
@ -6300,6 +6369,7 @@ share/doc/rust/html/unstable-book/library-features/rand.html
share/doc/rust/html/unstable-book/library-features/range-contains.html
share/doc/rust/html/unstable-book/library-features/raw.html
share/doc/rust/html/unstable-book/library-features/read-initializer.html
share/doc/rust/html/unstable-book/library-features/refcell-replace-swap.html
share/doc/rust/html/unstable-book/library-features/rt.html
share/doc/rust/html/unstable-book/library-features/rustc-private.html
share/doc/rust/html/unstable-book/library-features/sanitizer-runtime-lib.html
@ -6315,9 +6385,10 @@ share/doc/rust/html/unstable-book/library-features/splice.html
share/doc/rust/html/unstable-book/library-features/step-trait.html
share/doc/rust/html/unstable-book/library-features/str-escape.html
share/doc/rust/html/unstable-book/library-features/str-internals.html
share/doc/rust/html/unstable-book/library-features/string-retain.html
share/doc/rust/html/unstable-book/library-features/swap-nonoverlapping.html
share/doc/rust/html/unstable-book/library-features/swap-with-slice.html
share/doc/rust/html/unstable-book/library-features/take-set-limit.html
share/doc/rust/html/unstable-book/library-features/tcpstream-connect-timeout.html
share/doc/rust/html/unstable-book/library-features/test.html
share/doc/rust/html/unstable-book/library-features/thread-local-internals.html
share/doc/rust/html/unstable-book/library-features/thread-local-state.html
@ -6327,6 +6398,7 @@ share/doc/rust/html/unstable-book/library-features/try-from.html
share/doc/rust/html/unstable-book/library-features/try-trait.html
share/doc/rust/html/unstable-book/library-features/unicode.html
share/doc/rust/html/unstable-book/library-features/unique.html
share/doc/rust/html/unstable-book/library-features/unreachable.html
share/doc/rust/html/unstable-book/library-features/unsize.html
share/doc/rust/html/unstable-book/library-features/update-panic-count.html
share/doc/rust/html/unstable-book/library-features/vec-remove-item.html