diff --git a/lang/rust/Makefile b/lang/rust/Makefile index 11b6e791e77..b3bdac3ef40 100644 --- a/lang/rust/Makefile +++ b/lang/rust/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.78 2018/08/08 19:18:58 naddy Exp $ +# $OpenBSD: Makefile,v 1.79 2018/09/16 16:35:27 landry Exp $ ONLY_FOR_ARCHS = ${RUST_ARCHS} @@ -11,14 +11,14 @@ DPB_PROPERTIES = parallel COMMENT-main = compiler for Rust Language COMMENT-doc = html documentation for rustc -V = 1.28.0 -CARGO_V = 0.29.0 +V = 1.29.0 +CARGO_V = 0.30.0 DISTNAME = rustc-${V}-src # rustc bootstrap version -BV-aarch64 = 1.28.0-20180803 -BV-amd64 = 1.28.0-20180731 -BV-i386 = 1.28.0-20180731 +BV-aarch64 = 1.29.0-20180915 +BV-amd64 = 1.29.0-20180911 +BV-i386 = 1.29.0-20180911 BV = ${BV-${MACHINE_ARCH}} PKGNAME = rust-${V} @@ -88,7 +88,8 @@ LIB_DEPENDS += devel/libgit2/libgit2 \ net/curl \ security/libssh2 -MAKE_ENV += LIBGIT2_SYS_USE_PKG_CONFIG=1 +MAKE_ENV += LIBGIT2_SYS_USE_PKG_CONFIG=1 \ + LIBSSH2_SYS_USE_PKG_CONFIG=1 TEST_ENV += RUST_BACKTRACE=0 .ifdef DEBUG @@ -113,7 +114,7 @@ SUBST_VARS += WRKBUILD post-patch: sed -i 's/"files":{[^}]*}/"files":{}/' \ ${WRKSRC}/src/vendor/*/.cargo-checksum.json - ${SUBST_CMD} ${WRKSRC}/src/tools/cargo/tests/testsuite/cargotest/support/paths.rs + ${SUBST_CMD} ${WRKSRC}/src/tools/cargo/tests/testsuite/support/paths.rs # - check datasize limit before configuring (and building) pre-configure: @@ -148,6 +149,7 @@ do-configure: echo 'channel = "stable"' >>${WRKBUILD}/config.toml echo 'rpath = false' >>${WRKBUILD}/config.toml echo 'codegen-tests = false' >>${WRKBUILD}/config.toml + echo 'verbose-tests = true' >>${WRKBUILD}/config.toml echo '[dist]' >>${WRKBUILD}/config.toml echo 'src-tarball = false' >>${WRKBUILD}/config.toml @@ -229,6 +231,7 @@ bootstrap: build cp ${WRKDIR}/rustc-bootstrap-${MACHINE_ARCH}-${BV}/bin/${_bin} \ ${BOOTSTRAPDIR}/bin/${_bin} LD_LIBRARY_PATH="${BOOTSTRAPDIR}/lib" \ + LD_PRELOAD="${BOOTSTRAPDIR}/lib/rustlib/${TRIPLE_ARCH}/codegen-backends/librustc_codegen_llvm-llvm.so" \ ldd ${BOOTSTRAPDIR}/bin/${_bin}.bin \ | sed -ne 's,.* \(/.*/lib/lib.*\.so.[.0-9]*\)$$,\1,p' \ | xargs -r -J % cp % ${BOOTSTRAPDIR}/lib || true diff --git a/lang/rust/distinfo b/lang/rust/distinfo index 9fb8dd9055e..20c4c1bd479 100644 --- a/lang/rust/distinfo +++ b/lang/rust/distinfo @@ -1,8 +1,8 @@ -SHA256 (rust/rustc-1.28.0-src.tar.xz) = ioma/UtQK06/9c/ILLp3qMs3ETteYBjxXAlUWTYIGEg= -SHA256 (rust/rustc-bootstrap-aarch64-1.28.0-20180803.tar.xz) = yCtP78txnTUi9mPFb8RVUT2SmHAJe1TVgCEpqsZkgas= -SHA256 (rust/rustc-bootstrap-amd64-1.28.0-20180731.tar.xz) = 3ofrh6WsZseeWQWKQ+UbdN3FY+PWOeyIiknzieWtZyI= -SHA256 (rust/rustc-bootstrap-i386-1.28.0-20180731.tar.xz) = mjZ0k280AoarpYpGVwpuYQ5ok+yDmgnXSsC1q1sSCHA= -SIZE (rust/rustc-1.28.0-src.tar.xz) = 55838968 -SIZE (rust/rustc-bootstrap-aarch64-1.28.0-20180803.tar.xz) = 65530604 -SIZE (rust/rustc-bootstrap-amd64-1.28.0-20180731.tar.xz) = 69018184 -SIZE (rust/rustc-bootstrap-i386-1.28.0-20180731.tar.xz) = 69059092 +SHA256 (rust/rustc-1.29.0-src.tar.xz) = OUPamPtHijNu3nQE5C/3bva6T8K4IBLPzNa5/EvSwZE= +SHA256 (rust/rustc-bootstrap-aarch64-1.29.0-20180915.tar.xz) = 7NYZqMGOys36uBFHKQL58p2/wOoTRTTRMy3gX9SnKt0= +SHA256 (rust/rustc-bootstrap-amd64-1.29.0-20180911.tar.xz) = YcAkfJEeYS+aiZmlsHpPt9DVkzZdPDwd1WVmAu6fEYQ= +SHA256 (rust/rustc-bootstrap-i386-1.29.0-20180911.tar.xz) = gEMsLM4E74wBMDsddGHu7nXcufTCY5i8B6w89q+TXhI= +SIZE (rust/rustc-1.29.0-src.tar.xz) = 61938668 +SIZE (rust/rustc-bootstrap-aarch64-1.29.0-20180915.tar.xz) = 66197784 +SIZE (rust/rustc-bootstrap-amd64-1.29.0-20180911.tar.xz) = 69046436 +SIZE (rust/rustc-bootstrap-i386-1.29.0-20180911.tar.xz) = 69087864 diff --git a/lang/rust/patches/patch-src_bootstrap_lib_rs b/lang/rust/patches/patch-src_bootstrap_lib_rs index d71f9c39147..4728fab15a6 100644 --- a/lang/rust/patches/patch-src_bootstrap_lib_rs +++ b/lang/rust/patches/patch-src_bootstrap_lib_rs @@ -1,10 +1,10 @@ -$OpenBSD: patch-src_bootstrap_lib_rs,v 1.14 2018/08/06 19:07:50 landry Exp $ +$OpenBSD: patch-src_bootstrap_lib_rs,v 1.15 2018/09/16 16:35:27 landry Exp $ let us compilation choice to be honored. https://github.com/rust-lang/rust/issues/39900 Index: src/bootstrap/lib.rs --- src/bootstrap/lib.rs.orig +++ src/bootstrap/lib.rs -@@ -715,7 +715,6 @@ impl Build { +@@ -742,7 +742,6 @@ impl Build { // cc-rs because the build scripts will determine that for themselves. let mut base = self.cc[&target].args().iter() .map(|s| s.to_string_lossy().into_owned()) diff --git a/lang/rust/patches/patch-src_libcompiler_builtins_build_rs b/lang/rust/patches/patch-src_libcompiler_builtins_build_rs deleted file mode 100644 index 3cd57e32c82..00000000000 --- a/lang/rust/patches/patch-src_libcompiler_builtins_build_rs +++ /dev/null @@ -1,15 +0,0 @@ -$OpenBSD: patch-src_libcompiler_builtins_build_rs,v 1.4 2018/08/06 19:07:50 landry Exp $ -Use local compiler_rt as not static. -https://github.com/rust-lang-nursery/compiler-builtins/pull/249 -Index: src/libcompiler_builtins/build.rs ---- src/libcompiler_builtins/build.rs.orig -+++ src/libcompiler_builtins/build.rs -@@ -13,7 +13,7 @@ fn main() { - // OpenBSD provides compiler_rt by default, use it instead of rebuilding it from source - if target.contains("openbsd") { - println!("cargo:rustc-link-search=native=/usr/lib"); -- println!("cargo:rustc-link-lib=static=compiler_rt"); -+ println!("cargo:rustc-link-lib=compiler_rt"); - return; - } - diff --git a/lang/rust/patches/patch-src_liblibc_src_unix_bsd_netbsdlike_openbsdlike_openbsd_mod_rs b/lang/rust/patches/patch-src_liblibc_src_unix_bsd_netbsdlike_openbsdlike_openbsd_mod_rs deleted file mode 100644 index 9cdaf7ea4e1..00000000000 --- a/lang/rust/patches/patch-src_liblibc_src_unix_bsd_netbsdlike_openbsdlike_openbsd_mod_rs +++ /dev/null @@ -1,11 +0,0 @@ -$OpenBSD: patch-src_liblibc_src_unix_bsd_netbsdlike_openbsdlike_openbsd_mod_rs,v 1.1 2018/03/13 08:08:03 landry Exp $ -Add MAP_STACK flag. -Index: src/liblibc/src/unix/bsd/netbsdlike/openbsdlike/openbsd/mod.rs ---- src/liblibc/src/unix/bsd/netbsdlike/openbsdlike/openbsd/mod.rs.orig -+++ src/liblibc/src/unix/bsd/netbsdlike/openbsdlike/openbsd/mod.rs -@@ -1,3 +1,5 @@ -+pub const MAP_STACK : ::c_int = 0x4000; -+ - s! { - pub struct lconv { - pub decimal_point: *mut ::c_char, diff --git a/lang/rust/patches/patch-src_libstd_sys_unix_ext_net_rs b/lang/rust/patches/patch-src_libstd_sys_unix_ext_net_rs index 29fa39dc97d..5866329f2ac 100644 --- a/lang/rust/patches/patch-src_libstd_sys_unix_ext_net_rs +++ b/lang/rust/patches/patch-src_libstd_sys_unix_ext_net_rs @@ -1,9 +1,9 @@ -$OpenBSD: patch-src_libstd_sys_unix_ext_net_rs,v 1.10 2018/06/29 05:19:47 landry Exp $ +$OpenBSD: patch-src_libstd_sys_unix_ext_net_rs,v 1.11 2018/09/16 16:35:27 landry Exp $ Disable some 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 -@@ -1292,7 +1292,7 @@ impl UnixDatagram { +@@ -1298,7 +1298,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; /// -@@ -1331,7 +1331,7 @@ impl UnixDatagram { +@@ -1337,7 +1337,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; /// -@@ -1362,7 +1362,7 @@ impl UnixDatagram { +@@ -1368,7 +1368,7 @@ impl UnixDatagram { /// /// # Examples /// @@ -30,7 +30,7 @@ Index: src/libstd/sys/unix/ext/net.rs /// use std::os::unix::net::UnixDatagram; /// use std::time::Duration; /// -@@ -1379,7 +1379,7 @@ impl UnixDatagram { +@@ -1385,7 +1385,7 @@ impl UnixDatagram { /// /// # Examples /// @@ -39,7 +39,7 @@ Index: src/libstd/sys/unix/ext/net.rs /// use std::os::unix::net::UnixDatagram; /// use std::time::Duration; /// -@@ -1472,7 +1472,7 @@ mod test { +@@ -1478,7 +1478,7 @@ mod test { use thread; use io::{self, ErrorKind}; use io::prelude::*; @@ -48,7 +48,7 @@ Index: src/libstd/sys/unix/ext/net.rs use sys_common::io::test::tmpdir; use super::*; -@@ -1487,6 +1487,7 @@ mod test { +@@ -1493,6 +1493,7 @@ mod test { } #[test] @@ -56,7 +56,7 @@ Index: src/libstd/sys/unix/ext/net.rs fn basic() { let dir = tmpdir(); let socket_path = dir.path().join("sock"); -@@ -1611,6 +1612,7 @@ mod test { +@@ -1617,6 +1618,7 @@ mod test { } #[test] diff --git a/lang/rust/patches/patch-src_test_run-pass_stack-probes-lto_rs b/lang/rust/patches/patch-src_test_run-pass_stack-probes-lto_rs index cf17f2a3c5d..bbd1c2618f0 100644 --- a/lang/rust/patches/patch-src_test_run-pass_stack-probes-lto_rs +++ b/lang/rust/patches/patch-src_test_run-pass_stack-probes-lto_rs @@ -1,13 +1,13 @@ -$OpenBSD: patch-src_test_run-pass_stack-probes-lto_rs,v 1.2 2018/08/06 19:07:50 landry Exp $ +$OpenBSD: patch-src_test_run-pass_stack-probes-lto_rs,v 1.3 2018/09/16 16:35:27 landry Exp $ Disable stack-probes test (MAP_STACK terminate the process in a way the testsuite fails). Index: src/test/run-pass/stack-probes-lto.rs --- src/test/run-pass/stack-probes-lto.rs.orig +++ src/test/run-pass/stack-probes-lto.rs -@@ -21,6 +21,7 @@ +@@ -17,6 +17,7 @@ + // ignore-sparc + // ignore-sparc64 + // ignore-wasm ++// ignore-openbsd + // ignore-cloudabi no processes // ignore-emscripten no processes // ignore-musl FIXME #31506 - // ignore-pretty -+// ignore-openbsd - // min-system-llvm-version 5.0 - // compile-flags: -C lto - // no-prefer-dynamic diff --git a/lang/rust/patches/patch-src_test_run-pass_stack-probes_rs b/lang/rust/patches/patch-src_test_run-pass_stack-probes_rs index f950f19474a..136fef64822 100644 --- a/lang/rust/patches/patch-src_test_run-pass_stack-probes_rs +++ b/lang/rust/patches/patch-src_test_run-pass_stack-probes_rs @@ -1,13 +1,13 @@ -$OpenBSD: patch-src_test_run-pass_stack-probes_rs,v 1.2 2018/08/06 19:07:50 landry Exp $ +$OpenBSD: patch-src_test_run-pass_stack-probes_rs,v 1.3 2018/09/16 16:35:27 landry Exp $ Disable stack-probes test (MAP_STACK terminate the process in a way the testsuite fails). Index: src/test/run-pass/stack-probes.rs --- src/test/run-pass/stack-probes.rs.orig +++ src/test/run-pass/stack-probes.rs -@@ -20,6 +20,7 @@ +@@ -17,6 +17,7 @@ + // ignore-sparc + // ignore-sparc64 + // ignore-wasm ++// ignore-openbsd // ignore-cloudabi no processes // ignore-emscripten no processes // ignore-musl FIXME #31506 -+// ignore-openbsd - // min-system-llvm-version 5.0 - - use std::mem; diff --git a/lang/rust/patches/patch-src_tools_cargo_tests_testsuite_cargotest_support_paths_rs b/lang/rust/patches/patch-src_tools_cargo_tests_testsuite_support_paths_rs similarity index 73% rename from lang/rust/patches/patch-src_tools_cargo_tests_testsuite_cargotest_support_paths_rs rename to lang/rust/patches/patch-src_tools_cargo_tests_testsuite_support_paths_rs index 304c9d3d2c3..1e96991792e 100644 --- a/lang/rust/patches/patch-src_tools_cargo_tests_testsuite_cargotest_support_paths_rs +++ b/lang/rust/patches/patch-src_tools_cargo_tests_testsuite_support_paths_rs @@ -1,8 +1,8 @@ -$OpenBSD: patch-src_tools_cargo_tests_testsuite_cargotest_support_paths_rs,v 1.1 2018/05/22 06:04:33 landry Exp $ +$OpenBSD: patch-src_tools_cargo_tests_testsuite_support_paths_rs,v 1.1 2018/09/16 16:35:27 landry Exp $ -Index: src/tools/cargo/tests/testsuite/cargotest/support/paths.rs ---- src/tools/cargo/tests/testsuite/cargotest/support/paths.rs.orig -+++ src/tools/cargo/tests/testsuite/cargotest/support/paths.rs +Index: src/tools/cargo/tests/testsuite/support/paths.rs +--- src/tools/cargo/tests/testsuite/support/paths.rs.orig ++++ src/tools/cargo/tests/testsuite/support/paths.rs @@ -1,4 +1,3 @@ -use std::env; use std::cell::Cell; diff --git a/lang/rust/patches/patch-src_vendor_openssl-sys_build_main_rs b/lang/rust/patches/patch-src_vendor_openssl-sys_build_main_rs new file mode 100644 index 00000000000..174cd4c5fd6 --- /dev/null +++ b/lang/rust/patches/patch-src_vendor_openssl-sys_build_main_rs @@ -0,0 +1,14 @@ +$OpenBSD: patch-src_vendor_openssl-sys_build_main_rs,v 1.1 2018/09/16 16:35:27 landry Exp $ +The LibreSSL version in -current isn't explicitly supported. +Index: src/vendor/openssl-sys/build/main.rs +--- src/vendor/openssl-sys/build/main.rs.orig ++++ src/vendor/openssl-sys/build/main.rs +@@ -497,7 +497,7 @@ See rust-openssl README for more information: + (6, 2) => ('6', '2'), + (6, _) => ('6', 'x'), + (7, _) => ('7', 'x'), +- _ => version_error(), ++ _ => ('7', 'x'), + }; + + println!("cargo:libressl=true"); diff --git a/lang/rust/patches/patch-src_vendor_openssl-sys_build_rs b/lang/rust/patches/patch-src_vendor_openssl-sys_build_rs deleted file mode 100644 index e2cd5e530cc..00000000000 --- a/lang/rust/patches/patch-src_vendor_openssl-sys_build_rs +++ /dev/null @@ -1,14 +0,0 @@ -$OpenBSD: patch-src_vendor_openssl-sys_build_rs,v 1.6 2018/06/29 05:19:47 landry 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 -@@ -324,7 +324,7 @@ fn validate_headers(include_dirs: &[PathBuf]) -> Versi - #include - - #if LIBRESSL_VERSION_NUMBER >= 0x20800000 --RUST_LIBRESSL_NEW -+RUST_LIBRESSL_27X - #elif LIBRESSL_VERSION_NUMBER >= 0x20700000 - RUST_LIBRESSL_27X - #elif LIBRESSL_VERSION_NUMBER >= 0x20603000 diff --git a/lang/rust/pkg/PFRAG.aarch64-doc b/lang/rust/pkg/PFRAG.aarch64-doc index 1d9666659af..7564a1f6a09 100644 --- a/lang/rust/pkg/PFRAG.aarch64-doc +++ b/lang/rust/pkg/PFRAG.aarch64-doc @@ -1,4 +1,4 @@ -@comment $OpenBSD: PFRAG.aarch64-doc,v 1.2 2018/06/29 05:19:47 landry Exp $ +@comment $OpenBSD: PFRAG.aarch64-doc,v 1.3 2018/09/16 16:35:27 landry Exp $ share/doc/rust/html/core/arch/aarch64/_clz_u16.v.html share/doc/rust/html/core/arch/aarch64/_clz_u32.v.html share/doc/rust/html/core/arch/aarch64/_clz_u8.v.html @@ -466,6 +466,5 @@ share/doc/rust/html/core/coresimd/x86_64/bmi2/fn._pext_u64.html share/doc/rust/html/src/core/up/stdsimd/coresimd/aarch64/neon.rs.html share/doc/rust/html/src/core/up/stdsimd/coresimd/arm/neon.rs.html share/doc/rust/html/src/core/up/stdsimd/coresimd/arm/v7.rs.html -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/codegen/wrapping.rs.html share/doc/rust/html/src/std/up/stdsimd/stdsimd/arch/detect/arch/aarch64.rs.html share/doc/rust/html/src/std/up/stdsimd/stdsimd/arch/detect/os/other.rs.html diff --git a/lang/rust/pkg/PFRAG.aarch64-main b/lang/rust/pkg/PFRAG.aarch64-main index 59a10338070..829b447c429 100644 --- a/lang/rust/pkg/PFRAG.aarch64-main +++ b/lang/rust/pkg/PFRAG.aarch64-main @@ -1,133 +1,136 @@ -@comment $OpenBSD: PFRAG.aarch64-main,v 1.6 2018/08/06 19:07:50 landry Exp $ -lib/libarena-80438eb7f652049a.so -lib/libfmt_macros-4eed6b359692c99d.so -lib/libgraphviz-0e774edc5eb79a3a.so -lib/libproc_macro-8eb299cd333584c3.so -lib/librustc-5b01a139ebf7d124.so -lib/librustc_allocator-de497d7d20c1264a.so -lib/librustc_borrowck-6eccc6d4b96f4c64.so -lib/librustc_codegen_utils-59ef192e6c7a83e3.so -lib/librustc_cratesio_shim-c553032487d7d6e8.so -lib/librustc_data_structures-4b1564ef2b92f237.so -lib/librustc_driver-6724c3f09c0ab8d5.so -lib/librustc_errors-38b5897c858fa9de.so -lib/librustc_incremental-f4bda945d821f746.so -lib/librustc_lint-dbe7f0e22a6c88cd.so -lib/librustc_metadata-3d7794a70134b45f.so -lib/librustc_mir-afc678cc023b1538.so -lib/librustc_passes-7d6e2350eab850c1.so -lib/librustc_platform_intrinsics-75a8ac49b0f2a207.so -lib/librustc_plugin-723b6587d6a54aae.so -lib/librustc_privacy-406efed8bc68b4c6.so -lib/librustc_resolve-1ff2e4bfb5c67872.so -lib/librustc_save_analysis-7d538f8f679403bb.so -lib/librustc_target-22a23b4c6687bc88.so -lib/librustc_traits-7fb120f398e7eba4.so -lib/librustc_typeck-05869e8f7ab2a909.so -lib/libserialize-10d095d2e14df1ab.so -lib/libstd-8e81bf34b2eaf35b.so -lib/libsyntax-78a11cef81275463.so -lib/libsyntax_ext-a5a1cec0d9db0ecc.so -lib/libsyntax_pos-0e034432a872362c.so -lib/libterm-8745a2610e2e77aa.so -lib/libtest-a6645bbb600e8b39.so +@comment $OpenBSD: PFRAG.aarch64-main,v 1.7 2018/09/16 16:35:27 landry Exp $ +lib/libarena-a28a5239c21324e4.so +lib/libfmt_macros-f86ce0fcd98a92be.so +lib/libgraphviz-2c501434989aa072.so +lib/libproc_macro-46ea70bf16db1deb.so +lib/librustc-1bdf5627f14b7e49.so +lib/librustc_allocator-c36501787780346a.so +lib/librustc_borrowck-5d90a7e1206ca46f.so +lib/librustc_codegen_utils-4bb837a26c47493e.so +lib/librustc_cratesio_shim-ce814461bbf62535.so +lib/librustc_data_structures-5ccb4c472b7fc56b.so +lib/librustc_driver-e7d55822aaa2e8de.so +lib/librustc_errors-79648231eb119ae7.so +lib/librustc_incremental-60d92cc692647ac6.so +lib/librustc_lint-b94f70b26cb96ec3.so +lib/librustc_metadata-093091a4ef8e000e.so +lib/librustc_mir-b493e4236d59fcf8.so +lib/librustc_passes-f0f1c3f23fd4565d.so +lib/librustc_platform_intrinsics-9318cd7300de16d5.so +lib/librustc_plugin-1c83cbd70c886f12.so +lib/librustc_privacy-237019ebdb7110da.so +lib/librustc_resolve-b03242d8c398e145.so +lib/librustc_save_analysis-889c431835b423ae.so +lib/librustc_target-6ca946e4afaa9e06.so +lib/librustc_traits-1a554f92d15e93e5.so +lib/librustc_typeck-57141e0020b23425.so +lib/libserialize-677921a01baebfc5.so +lib/libstd-226ef2f6a3f6b1bd.so +lib/libsyntax-04ac80e49a3af2a9.so +lib/libsyntax_ext-c434ec13f437fba8.so +lib/libsyntax_pos-fa13f626bf1ea5ea.so +lib/libterm-a987a0d12723767f.so +lib/libtest-1fda527125c4ad7a.so lib/rustlib/aarch64-unknown-openbsd/ lib/rustlib/aarch64-unknown-openbsd/codegen-backends/ lib/rustlib/aarch64-unknown-openbsd/codegen-backends/librustc_codegen_llvm-llvm.so lib/rustlib/aarch64-unknown-openbsd/lib/ -lib/rustlib/aarch64-unknown-openbsd/lib/liballoc-dbc45c9225980432.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/liballoc_jemalloc-a8d5db7b865c5275.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/liballoc_system-a50cd7a3b6772f86.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libar-04523037d47bc2b4.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libarena-80438eb7f652049a.so -lib/rustlib/aarch64-unknown-openbsd/lib/libarrayvec-6c479b777c767236.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libatty-60a963770fc96839.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libbacktrace-1a52e7d407e9c56d.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libbacktrace_sys-aa4af4d2b356bcb0.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libbitflags-504aaec6a0409efe.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libbyteorder-9b0c1bd2cbb00176.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libcfg_if-2d07c7e1694e76c6.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libchalk_engine-45e5a46ae88bc5e3.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libchalk_macros-b2bd097d673f261d.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libcompiler_builtins-b3613dfc6e411920.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libcore-f9ca678c91934408.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libcrossbeam_deque-9dddaaa7de8964c5.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libcrossbeam_epoch-6f9b121d4273c5ec.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libcrossbeam_utils-f65ead0c8479c047.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libdatafrog-b33557b4d123d690.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libeither-8129452bb90dca0a.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libena-cb447a9c4e7eb54b.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libenv_logger-03724b98d58da12f.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libflate2-740d4a727776b6d8.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libfmt_macros-4eed6b359692c99d.so -lib/rustlib/aarch64-unknown-openbsd/lib/libgetopts-791418c970f5cb3e.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libgraphviz-0e774edc5eb79a3a.so -lib/rustlib/aarch64-unknown-openbsd/lib/libhumantime-7c8d25df967ea469.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libjobserver-180d3396d39b58d1.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/liblazy_static-34af795199d330cb.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/liblazy_static-50146fa74daa240a.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/liblibc-296d0929d9aa34d2.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/liblibc-b83de3031f06cf0d.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/liblog-0c810da193886400.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/liblog_settings-8dff2d5709798a6d.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libmemoffset-ac690d8cdc691a3a.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libminiz_sys-00b8cf8aeb4d9d30.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libnodrop-2cffa05e52d02bf1.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libnum_cpus-1000fc3d96d4646d.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libowning_ref-5e8a148017706a4b.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libpanic_abort-11fb0def4d7c518f.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libpanic_unwind-a7f13df76cfcee94.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libparking_lot-089efb4179d10477.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libparking_lot_core-a3a2de27cce8db79.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libpolonius_engine-98838639ff86a19a.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libproc_macro-8eb299cd333584c3.so -lib/rustlib/aarch64-unknown-openbsd/lib/libquick_error-8bac060bc0b2c7ff.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/librand-e2965c272cb40ddc.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libremove_dir_all-a02bbe383c13e6f2.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/librls_data-73f5e78b0ffab8c5.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/librls_span-66ab93570de04552.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/librustc-5b01a139ebf7d124.so -lib/rustlib/aarch64-unknown-openbsd/lib/librustc_allocator-de497d7d20c1264a.so -lib/rustlib/aarch64-unknown-openbsd/lib/librustc_apfloat-a48d4c7dd253b300.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/librustc_borrowck-6eccc6d4b96f4c64.so -lib/rustlib/aarch64-unknown-openbsd/lib/librustc_codegen_utils-59ef192e6c7a83e3.so -lib/rustlib/aarch64-unknown-openbsd/lib/librustc_cratesio_shim-c553032487d7d6e8.so -lib/rustlib/aarch64-unknown-openbsd/lib/librustc_data_structures-4b1564ef2b92f237.so -lib/rustlib/aarch64-unknown-openbsd/lib/librustc_demangle-b85c81e4c6b83b1e.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/librustc_driver-6724c3f09c0ab8d5.so -lib/rustlib/aarch64-unknown-openbsd/lib/librustc_errors-38b5897c858fa9de.so -lib/rustlib/aarch64-unknown-openbsd/lib/librustc_hash-65601404dfcf47c9.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/librustc_incremental-f4bda945d821f746.so -lib/rustlib/aarch64-unknown-openbsd/lib/librustc_lint-dbe7f0e22a6c88cd.so -lib/rustlib/aarch64-unknown-openbsd/lib/librustc_metadata-3d7794a70134b45f.so -lib/rustlib/aarch64-unknown-openbsd/lib/librustc_mir-afc678cc023b1538.so -lib/rustlib/aarch64-unknown-openbsd/lib/librustc_passes-7d6e2350eab850c1.so -lib/rustlib/aarch64-unknown-openbsd/lib/librustc_platform_intrinsics-75a8ac49b0f2a207.so -lib/rustlib/aarch64-unknown-openbsd/lib/librustc_plugin-723b6587d6a54aae.so -lib/rustlib/aarch64-unknown-openbsd/lib/librustc_privacy-406efed8bc68b4c6.so -lib/rustlib/aarch64-unknown-openbsd/lib/librustc_rayon-76d178749f06c180.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/librustc_rayon_core-73a7335ac954408a.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/librustc_resolve-1ff2e4bfb5c67872.so -lib/rustlib/aarch64-unknown-openbsd/lib/librustc_save_analysis-7d538f8f679403bb.so -lib/rustlib/aarch64-unknown-openbsd/lib/librustc_serialize-f9a2a6b9e99784b3.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/librustc_target-22a23b4c6687bc88.so -lib/rustlib/aarch64-unknown-openbsd/lib/librustc_traits-7fb120f398e7eba4.so -lib/rustlib/aarch64-unknown-openbsd/lib/librustc_typeck-05869e8f7ab2a909.so -lib/rustlib/aarch64-unknown-openbsd/lib/libscoped_tls-b4139ba5fbc4f9ec.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libscopeguard-f48b9da1f50e0c53.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libserialize-10d095d2e14df1ab.so -lib/rustlib/aarch64-unknown-openbsd/lib/libsmallvec-ece14186f03afae7.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libstable_deref_trait-0ee95c7f0ad485ef.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libstd-8e81bf34b2eaf35b.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libstd-8e81bf34b2eaf35b.so -lib/rustlib/aarch64-unknown-openbsd/lib/libstd_unicode-ae45b7e1a72dc2c8.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libsyntax-78a11cef81275463.so -lib/rustlib/aarch64-unknown-openbsd/lib/libsyntax_ext-a5a1cec0d9db0ecc.so -lib/rustlib/aarch64-unknown-openbsd/lib/libsyntax_pos-0e034432a872362c.so -lib/rustlib/aarch64-unknown-openbsd/lib/libtempdir-ee3f5b73796ff8b9.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libterm-8745a2610e2e77aa.so -lib/rustlib/aarch64-unknown-openbsd/lib/libtermcolor-b08c92068339574e.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libtest-a6645bbb600e8b39.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libtest-a6645bbb600e8b39.so -lib/rustlib/aarch64-unknown-openbsd/lib/libunicode_width-5f62d9445a83b010.rlib -lib/rustlib/aarch64-unknown-openbsd/lib/libunwind-d4b3e967e6684e85.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/liballoc-01c03d2060616166.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/liballoc_jemalloc-664bc8922f9fc844.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/liballoc_system-6f593ee417f09fc5.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libarena-a28a5239c21324e4.so +lib/rustlib/aarch64-unknown-openbsd/lib/libarrayvec-2bcfceb9b4be374d.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libatty-7c6e7f623140eb20.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libbacktrace-9b788cdb717a5949.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libbacktrace_sys-946511c1f4af2a78.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libbitflags-061457044fa36443.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libbyteorder-2a0ddd5c2ac6e34f.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libcfg_if-6f0bdc0bea70acc5.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libchalk_engine-cb807d7282134791.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libchalk_macros-c418c43fc0429989.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libcompiler_builtins-2e62bc3719dce5b0.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libcore-e5b18d383e42652e.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libcrossbeam_deque-da385377c9a3281d.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libcrossbeam_epoch-f51a25351a59f1fc.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libcrossbeam_utils-935f41e67a096215.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libdatafrog-0ca42b8059f4094c.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libeither-800b1a0b337831f9.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libena-66c734f79b29b859.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libenv_logger-86a95d742eaed275.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libflate2-6aa6c79945b85667.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libfmt_macros-f86ce0fcd98a92be.so +lib/rustlib/aarch64-unknown-openbsd/lib/libgetopts-6708b65907aa2f15.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libgraphviz-2c501434989aa072.so +lib/rustlib/aarch64-unknown-openbsd/lib/libhumantime-02786e90f2eb9380.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libjobserver-ae53c452cc651ce8.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/liblazy_static-0e3f76ba3f9a4498.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/liblazy_static-9c25b41025655143.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/liblibc-c8b4081563848c9d.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/liblibc-ec3e59097918879d.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/liblog-4d8cf754c3dcad91.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/liblog_settings-e87fa654d0e80692.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libmemoffset-8d99f6cce3f0ff3d.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libminiz_sys-5ac7d1e4ac0eb570.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libnodrop-f2c5f26a0b993f43.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libnum_cpus-e4f437e145824908.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libowning_ref-0f353baed3cb583c.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libpanic_abort-2b1fee3187a9a508.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libpanic_unwind-05e39743212cbc3f.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libparking_lot-04388ad15e7e7d2e.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libparking_lot_core-1fa4806dc1b0c9d4.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libpolonius_engine-6f07da32315dd087.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libproc_macro-46ea70bf16db1deb.so +lib/rustlib/aarch64-unknown-openbsd/lib/libquick_error-0eecd3f9c1582ed7.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/librand-54f510c8b44ff524.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libremove_dir_all-dd440da5d7d310e9.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/librls_data-70f919fe64b04b7d.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/librls_span-7aee388b64febbc9.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/librustc-1bdf5627f14b7e49.so +lib/rustlib/aarch64-unknown-openbsd/lib/librustc_allocator-c36501787780346a.so +lib/rustlib/aarch64-unknown-openbsd/lib/librustc_apfloat-1880ef61d630eb80.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/librustc_borrowck-5d90a7e1206ca46f.so +lib/rustlib/aarch64-unknown-openbsd/lib/librustc_codegen_utils-4bb837a26c47493e.so +lib/rustlib/aarch64-unknown-openbsd/lib/librustc_cratesio_shim-ce814461bbf62535.so +lib/rustlib/aarch64-unknown-openbsd/lib/librustc_data_structures-5ccb4c472b7fc56b.so +lib/rustlib/aarch64-unknown-openbsd/lib/librustc_demangle-b6c4c23582225ff7.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/librustc_driver-e7d55822aaa2e8de.so +lib/rustlib/aarch64-unknown-openbsd/lib/librustc_errors-79648231eb119ae7.so +lib/rustlib/aarch64-unknown-openbsd/lib/librustc_hash-4d91239a9da2335b.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/librustc_incremental-60d92cc692647ac6.so +lib/rustlib/aarch64-unknown-openbsd/lib/librustc_lint-b94f70b26cb96ec3.so +lib/rustlib/aarch64-unknown-openbsd/lib/librustc_metadata-093091a4ef8e000e.so +lib/rustlib/aarch64-unknown-openbsd/lib/librustc_mir-b493e4236d59fcf8.so +lib/rustlib/aarch64-unknown-openbsd/lib/librustc_passes-f0f1c3f23fd4565d.so +lib/rustlib/aarch64-unknown-openbsd/lib/librustc_platform_intrinsics-9318cd7300de16d5.so +lib/rustlib/aarch64-unknown-openbsd/lib/librustc_plugin-1c83cbd70c886f12.so +lib/rustlib/aarch64-unknown-openbsd/lib/librustc_privacy-237019ebdb7110da.so +lib/rustlib/aarch64-unknown-openbsd/lib/librustc_rayon-1f53683eaf2fff07.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/librustc_rayon_core-9d73768dab881d12.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/librustc_resolve-b03242d8c398e145.so +lib/rustlib/aarch64-unknown-openbsd/lib/librustc_save_analysis-889c431835b423ae.so +lib/rustlib/aarch64-unknown-openbsd/lib/librustc_serialize-7d75896b88eb73dd.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/librustc_target-6ca946e4afaa9e06.so +lib/rustlib/aarch64-unknown-openbsd/lib/librustc_traits-1a554f92d15e93e5.so +lib/rustlib/aarch64-unknown-openbsd/lib/librustc_typeck-57141e0020b23425.so +lib/rustlib/aarch64-unknown-openbsd/lib/libscoped_tls-e78646ffbcfe0c5c.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libscopeguard-7844bf731427c9d8.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libserialize-677921a01baebfc5.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libserialize-677921a01baebfc5.so +lib/rustlib/aarch64-unknown-openbsd/lib/libsmallvec-f6d5d23e45d30aba.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libstable_deref_trait-fe2e28ebc9d900c7.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libstd-226ef2f6a3f6b1bd.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libstd-226ef2f6a3f6b1bd.so +lib/rustlib/aarch64-unknown-openbsd/lib/libstd_unicode-385e6f7dc5c53ce4.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libsyntax-04ac80e49a3af2a9.so +lib/rustlib/aarch64-unknown-openbsd/lib/libsyntax_ext-c434ec13f437fba8.so +lib/rustlib/aarch64-unknown-openbsd/lib/libsyntax_pos-fa13f626bf1ea5ea.so +lib/rustlib/aarch64-unknown-openbsd/lib/libtempfile-a633da71a0dafbf0.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libterm-a987a0d12723767f.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libterm-a987a0d12723767f.so +lib/rustlib/aarch64-unknown-openbsd/lib/libtermcolor-319eee7991afdf71.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libtest-1fda527125c4ad7a.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libtest-1fda527125c4ad7a.so +lib/rustlib/aarch64-unknown-openbsd/lib/libunicode_width-a264d188f7dac66e.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libunreachable-158db0a50cc079a1.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libunwind-f9abe9db1688c840.rlib +lib/rustlib/aarch64-unknown-openbsd/lib/libvoid-dec38920e31a7880.rlib diff --git a/lang/rust/pkg/PFRAG.amd64-doc b/lang/rust/pkg/PFRAG.amd64-doc index 64679325a9a..8528224ced9 100644 --- a/lang/rust/pkg/PFRAG.amd64-doc +++ b/lang/rust/pkg/PFRAG.amd64-doc @@ -1,6 +1,4 @@ -@comment $OpenBSD: PFRAG.amd64-doc,v 1.2 2018/06/29 05:19:47 landry Exp $ -share/doc/rust/html/core/arch/x86/__readeflags.v.html -share/doc/rust/html/core/arch/x86/__writeeflags.v.html +@comment $OpenBSD: PFRAG.amd64-doc,v 1.3 2018/09/16 16:35:27 landry Exp $ share/doc/rust/html/core/arch/x86/_blcfill_u64.v.html share/doc/rust/html/core/arch/x86/_blci_u64.v.html share/doc/rust/html/core/arch/x86/_blcic_u64.v.html @@ -10,8 +8,6 @@ share/doc/rust/html/core/arch/x86/_blsfill_u64.v.html share/doc/rust/html/core/arch/x86/_blsic_u64.v.html share/doc/rust/html/core/arch/x86/_t1mskc_u64.v.html share/doc/rust/html/core/arch/x86/_tzmsk_u64.v.html -share/doc/rust/html/core/arch/x86/fn.__readeflags.html -share/doc/rust/html/core/arch/x86/fn.__writeeflags.html share/doc/rust/html/core/arch/x86/fn._blcfill_u64.html share/doc/rust/html/core/arch/x86/fn._blci_u64.html share/doc/rust/html/core/arch/x86/fn._blcic_u64.html @@ -21,8 +17,6 @@ share/doc/rust/html/core/arch/x86/fn._blsfill_u64.html share/doc/rust/html/core/arch/x86/fn._blsic_u64.html share/doc/rust/html/core/arch/x86/fn._t1mskc_u64.html share/doc/rust/html/core/arch/x86/fn._tzmsk_u64.html -share/doc/rust/html/core/arch/x86_64/__readeflags.v.html -share/doc/rust/html/core/arch/x86_64/__writeeflags.v.html share/doc/rust/html/core/arch/x86_64/_bextr2_u64.v.html share/doc/rust/html/core/arch/x86_64/_bextr_u64.v.html share/doc/rust/html/core/arch/x86_64/_blcfill_u64.v.html @@ -41,8 +35,6 @@ share/doc/rust/html/core/arch/x86_64/_pdep_u64.v.html share/doc/rust/html/core/arch/x86_64/_pext_u64.v.html share/doc/rust/html/core/arch/x86_64/_t1mskc_u64.v.html share/doc/rust/html/core/arch/x86_64/_tzmsk_u64.v.html -share/doc/rust/html/core/arch/x86_64/fn.__readeflags.html -share/doc/rust/html/core/arch/x86_64/fn.__writeeflags.html share/doc/rust/html/core/arch/x86_64/fn._bextr2_u64.html share/doc/rust/html/core/arch/x86_64/fn._bextr_u64.html share/doc/rust/html/core/arch/x86_64/fn._blcfill_u64.html @@ -61,11 +53,6 @@ share/doc/rust/html/core/arch/x86_64/fn._pdep_u64.html share/doc/rust/html/core/arch/x86_64/fn._pext_u64.html share/doc/rust/html/core/arch/x86_64/fn._t1mskc_u64.html share/doc/rust/html/core/arch/x86_64/fn._tzmsk_u64.html -share/doc/rust/html/core/coresimd/x86/eflags/ -share/doc/rust/html/core/coresimd/x86/eflags/__readeflags.v.html -share/doc/rust/html/core/coresimd/x86/eflags/__writeeflags.v.html -share/doc/rust/html/core/coresimd/x86/eflags/fn.__readeflags.html -share/doc/rust/html/core/coresimd/x86/eflags/fn.__writeeflags.html share/doc/rust/html/core/coresimd/x86/tbm/_blcfill_u64.v.html share/doc/rust/html/core/coresimd/x86/tbm/_blci_u64.v.html share/doc/rust/html/core/coresimd/x86/tbm/_blcic_u64.v.html diff --git a/lang/rust/pkg/PFRAG.amd64-main b/lang/rust/pkg/PFRAG.amd64-main index d6071cd70bb..bd165d0cb59 100644 --- a/lang/rust/pkg/PFRAG.amd64-main +++ b/lang/rust/pkg/PFRAG.amd64-main @@ -1,133 +1,136 @@ -@comment $OpenBSD: PFRAG.amd64-main,v 1.19 2018/08/06 19:07:50 landry Exp $ -lib/libarena-cda655a3e4b91e6c.so -lib/libfmt_macros-21256d1e0b9081e1.so -lib/libgraphviz-db8f49dd3abbd086.so -lib/libproc_macro-456df14a8bb9085c.so -lib/librustc-ebf908c016a7d4cc.so -lib/librustc_allocator-2131ecea4a738eae.so -lib/librustc_borrowck-c2885c39465ee5b5.so -lib/librustc_codegen_utils-bc2c145bd631114e.so -lib/librustc_cratesio_shim-9c92584da6800ced.so -lib/librustc_data_structures-1a27b5d6824b1fdf.so -lib/librustc_driver-ecb574a2e64154d3.so -lib/librustc_errors-8f66216dd1ef0526.so -lib/librustc_incremental-9449916e8d1dcd71.so -lib/librustc_lint-c9e3ed7fda50958c.so -lib/librustc_metadata-892c30450740dd0c.so -lib/librustc_mir-2679395e08059bfb.so -lib/librustc_passes-cc1dd542afee4ccc.so -lib/librustc_platform_intrinsics-1f9c9547368ebecc.so -lib/librustc_plugin-9f404502c5ef3240.so -lib/librustc_privacy-8f594676179e8911.so -lib/librustc_resolve-e96e3af64ae30c22.so -lib/librustc_save_analysis-287682f65b73937f.so -lib/librustc_target-f014a1da5bfdaa5d.so -lib/librustc_traits-f6deb4b5f81ae4a2.so -lib/librustc_typeck-0d626cc7146d21dd.so -lib/libserialize-9a88e0aeda4f486e.so -lib/libstd-eb573a308cb129c4.so -lib/libsyntax-af300fb043538e01.so -lib/libsyntax_ext-24169ca66a5d045a.so -lib/libsyntax_pos-aff697ae5e500031.so -lib/libterm-62388301d6227cbd.so -lib/libtest-c3abb31ab3877b2d.so +@comment $OpenBSD: PFRAG.amd64-main,v 1.20 2018/09/16 16:35:27 landry Exp $ +lib/libarena-e5e7bda08a2259a5.so +lib/libfmt_macros-74c3d6e3d7e38d66.so +lib/libgraphviz-9bff71eb7ccb209f.so +lib/libproc_macro-d4fd5adebf6b39e9.so +lib/librustc-a8c3874df3326b37.so +lib/librustc_allocator-91aa0b10f94b215b.so +lib/librustc_borrowck-aa3856554df570a9.so +lib/librustc_codegen_utils-e1d727b7485da1c4.so +lib/librustc_cratesio_shim-d394d59094b9c079.so +lib/librustc_data_structures-7083d471d3191327.so +lib/librustc_driver-3efb0d5d014cb2a9.so +lib/librustc_errors-650edcd1a9adcdd6.so +lib/librustc_incremental-a7b696a0cc55f5a1.so +lib/librustc_lint-6176003848f062c3.so +lib/librustc_metadata-e48085903bd59120.so +lib/librustc_mir-4ac5ffb8dfc788eb.so +lib/librustc_passes-70d3c30efd2d8177.so +lib/librustc_platform_intrinsics-38ca31a35482d80a.so +lib/librustc_plugin-ce0222a1c596d0fc.so +lib/librustc_privacy-afaa837e37970da6.so +lib/librustc_resolve-a5d149c9b39cc0d3.so +lib/librustc_save_analysis-dc4f7270bf981841.so +lib/librustc_target-fb08fbb37d962758.so +lib/librustc_traits-62393eaa08ef021f.so +lib/librustc_typeck-11ad9ee035265b29.so +lib/libserialize-36617b98a50b4c8d.so +lib/libstd-6fce3a3a7090842c.so +lib/libsyntax-705cbc0797963891.so +lib/libsyntax_ext-13a44f55756d1274.so +lib/libsyntax_pos-8ce47d60e25c4913.so +lib/libterm-42d4761d35e620b9.so +lib/libtest-657908db8efe9c73.so lib/rustlib/x86_64-unknown-openbsd/ lib/rustlib/x86_64-unknown-openbsd/codegen-backends/ lib/rustlib/x86_64-unknown-openbsd/codegen-backends/librustc_codegen_llvm-llvm.so lib/rustlib/x86_64-unknown-openbsd/lib/ -lib/rustlib/x86_64-unknown-openbsd/lib/liballoc-1918a7e2026da9bb.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/liballoc_jemalloc-c5e92cc8ef91b993.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/liballoc_system-96c5313c0b434738.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libar-d6efbaf790838fff.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libarena-cda655a3e4b91e6c.so -lib/rustlib/x86_64-unknown-openbsd/lib/libarrayvec-398013bea374ebff.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libatty-fd8de3957efa734a.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libbacktrace-18560efa5108ad7b.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libbacktrace_sys-fbb931866da17706.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libbitflags-9aabff913a694b23.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libbyteorder-19dc604da0938bc8.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libcfg_if-96767407fe68fb40.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libchalk_engine-66ee739840a55a92.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libchalk_macros-c1bb0b58db6f0ba7.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libcompiler_builtins-34f2a007cb63175c.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libcore-445d09d2696c8a51.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libcrossbeam_deque-79c1241b6f3288b9.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libcrossbeam_epoch-50c37e840db1a0a4.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libcrossbeam_utils-32592f997f90c0de.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libdatafrog-9d7ad957f669dde9.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libeither-48866ca493a79e0e.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libena-8203d3ad4046fcb2.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libenv_logger-7c27977220b0e2ce.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libflate2-b496e95254903e98.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libfmt_macros-21256d1e0b9081e1.so -lib/rustlib/x86_64-unknown-openbsd/lib/libgetopts-568661ea7b8494e6.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libgraphviz-db8f49dd3abbd086.so -lib/rustlib/x86_64-unknown-openbsd/lib/libhumantime-7912d30aaf8212f5.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libjobserver-c1f3f4153a12a6ea.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/liblazy_static-0188d90dd93d7666.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/liblazy_static-b783c59d0b2366d8.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/liblibc-25425a7485d35311.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/liblibc-79632c1db9c6dea9.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/liblog-620cb778ef152b9d.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/liblog_settings-a1f5c9b43a1acee2.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libmemoffset-0f746789ef9549fd.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libminiz_sys-371c8c3f9b95d229.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libnodrop-b11902f668134c63.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libnum_cpus-68e03a2709db2d99.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libowning_ref-62cfa84720875416.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libpanic_abort-f0a6c79e4979bfb0.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libpanic_unwind-03acfeed5f84c432.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libparking_lot-649136bb4c3a6852.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libparking_lot_core-3ce0799589cc1064.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libpolonius_engine-5186bced7cef153c.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libproc_macro-456df14a8bb9085c.so -lib/rustlib/x86_64-unknown-openbsd/lib/libquick_error-adf9fe85a640658b.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/librand-f961c0336d2df8d9.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libremove_dir_all-a5277008e7178104.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/librls_data-e82fc3ce4c828c13.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/librls_span-87a4fb4f455c7d4f.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/librustc-ebf908c016a7d4cc.so -lib/rustlib/x86_64-unknown-openbsd/lib/librustc_allocator-2131ecea4a738eae.so -lib/rustlib/x86_64-unknown-openbsd/lib/librustc_apfloat-7c3eb0c26921af99.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/librustc_borrowck-c2885c39465ee5b5.so -lib/rustlib/x86_64-unknown-openbsd/lib/librustc_codegen_utils-bc2c145bd631114e.so -lib/rustlib/x86_64-unknown-openbsd/lib/librustc_cratesio_shim-9c92584da6800ced.so -lib/rustlib/x86_64-unknown-openbsd/lib/librustc_data_structures-1a27b5d6824b1fdf.so -lib/rustlib/x86_64-unknown-openbsd/lib/librustc_demangle-8f88deb354e38b2f.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/librustc_driver-ecb574a2e64154d3.so -lib/rustlib/x86_64-unknown-openbsd/lib/librustc_errors-8f66216dd1ef0526.so -lib/rustlib/x86_64-unknown-openbsd/lib/librustc_hash-1515eb848beb0e36.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/librustc_incremental-9449916e8d1dcd71.so -lib/rustlib/x86_64-unknown-openbsd/lib/librustc_lint-c9e3ed7fda50958c.so -lib/rustlib/x86_64-unknown-openbsd/lib/librustc_metadata-892c30450740dd0c.so -lib/rustlib/x86_64-unknown-openbsd/lib/librustc_mir-2679395e08059bfb.so -lib/rustlib/x86_64-unknown-openbsd/lib/librustc_passes-cc1dd542afee4ccc.so -lib/rustlib/x86_64-unknown-openbsd/lib/librustc_platform_intrinsics-1f9c9547368ebecc.so -lib/rustlib/x86_64-unknown-openbsd/lib/librustc_plugin-9f404502c5ef3240.so -lib/rustlib/x86_64-unknown-openbsd/lib/librustc_privacy-8f594676179e8911.so -lib/rustlib/x86_64-unknown-openbsd/lib/librustc_rayon-dae13e370220ae67.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/librustc_rayon_core-fedbc870e20b8081.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/librustc_resolve-e96e3af64ae30c22.so -lib/rustlib/x86_64-unknown-openbsd/lib/librustc_save_analysis-287682f65b73937f.so -lib/rustlib/x86_64-unknown-openbsd/lib/librustc_serialize-60e1f724eef44651.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/librustc_target-f014a1da5bfdaa5d.so -lib/rustlib/x86_64-unknown-openbsd/lib/librustc_traits-f6deb4b5f81ae4a2.so -lib/rustlib/x86_64-unknown-openbsd/lib/librustc_typeck-0d626cc7146d21dd.so -lib/rustlib/x86_64-unknown-openbsd/lib/libscoped_tls-5ff944691019074c.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libscopeguard-6a5ed9adc0ffdcfd.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libserialize-9a88e0aeda4f486e.so -lib/rustlib/x86_64-unknown-openbsd/lib/libsmallvec-aa4c7c2f7904f644.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libstable_deref_trait-115e29d2f5808a7d.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libstd-eb573a308cb129c4.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libstd-eb573a308cb129c4.so -lib/rustlib/x86_64-unknown-openbsd/lib/libstd_unicode-f14d59d61004907c.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libsyntax-af300fb043538e01.so -lib/rustlib/x86_64-unknown-openbsd/lib/libsyntax_ext-24169ca66a5d045a.so -lib/rustlib/x86_64-unknown-openbsd/lib/libsyntax_pos-aff697ae5e500031.so -lib/rustlib/x86_64-unknown-openbsd/lib/libtempdir-c16cde3c0bc84ebd.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libterm-62388301d6227cbd.so -lib/rustlib/x86_64-unknown-openbsd/lib/libtermcolor-76cf8cf51647dca2.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libtest-c3abb31ab3877b2d.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libtest-c3abb31ab3877b2d.so -lib/rustlib/x86_64-unknown-openbsd/lib/libunicode_width-89abec964d8fec73.rlib -lib/rustlib/x86_64-unknown-openbsd/lib/libunwind-1dcc34d8f5d136cb.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/liballoc-bb411f7995b06fff.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/liballoc_jemalloc-d61914f23a82fd75.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/liballoc_system-f7b3d0f64bd26720.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libarena-e5e7bda08a2259a5.so +lib/rustlib/x86_64-unknown-openbsd/lib/libarrayvec-ed99afec63ecf625.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libatty-42b9496024e68898.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libbacktrace-c2ddd5e6d94f8bd9.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libbacktrace_sys-31257eeb9766b87e.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libbitflags-45bcfe3afd9cf4d8.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libbyteorder-07eead268bdbade6.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libcfg_if-41cc9e15aec998b7.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libchalk_engine-d12538e78a7ca84c.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libchalk_macros-b55eefb1fa22584f.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libcompiler_builtins-f96180bf2cd69b6a.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libcore-402ff4ceef739d5e.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libcrossbeam_deque-998a7da50ffc9be7.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libcrossbeam_epoch-e614c3ff7c244e55.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libcrossbeam_utils-7189f19aa7784e67.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libdatafrog-402d17454f23b954.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libeither-ddac99dfb93f11c1.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libena-003d467f991d94f9.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libenv_logger-2dc1716ec3675018.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libflate2-f0ec0a912aa1e863.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libfmt_macros-74c3d6e3d7e38d66.so +lib/rustlib/x86_64-unknown-openbsd/lib/libgetopts-fbcea0b33bb5e5a1.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libgraphviz-9bff71eb7ccb209f.so +lib/rustlib/x86_64-unknown-openbsd/lib/libhumantime-efb0bd6344fd42aa.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libjobserver-6106615f7a1865c5.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/liblazy_static-34c4febc5a311c70.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/liblazy_static-b0aaf8a317bdcc51.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/liblibc-22fbf8a6ec557244.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/liblibc-4c74bf4d66a29cd6.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/liblog-9d09d84602f97c19.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/liblog_settings-3218189fd33007d0.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libmemoffset-af01bfc75a71a5ce.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libminiz_sys-11fdaed0a253e1a1.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libnodrop-f61fe786d1945cdb.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libnum_cpus-5850c0ebec738dfb.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libowning_ref-339bc3e3baf16a32.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libpanic_abort-8620a156e5be2895.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libpanic_unwind-ee3d4d3235684ef7.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libparking_lot-36d22d79b63c2f8e.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libparking_lot_core-01dbfede7fd4dbb1.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libpolonius_engine-47e226b9f0f99f4e.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libproc_macro-d4fd5adebf6b39e9.so +lib/rustlib/x86_64-unknown-openbsd/lib/libquick_error-00691053ac974fd2.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/librand-175a16dec4d2ed0f.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libremove_dir_all-76b27d745d7a0270.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/librls_data-24e1a2adc7eb57c3.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/librls_span-44395ccc7135d347.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/librustc-a8c3874df3326b37.so +lib/rustlib/x86_64-unknown-openbsd/lib/librustc_allocator-91aa0b10f94b215b.so +lib/rustlib/x86_64-unknown-openbsd/lib/librustc_apfloat-7a4f34e25ece0f61.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/librustc_borrowck-aa3856554df570a9.so +lib/rustlib/x86_64-unknown-openbsd/lib/librustc_codegen_utils-e1d727b7485da1c4.so +lib/rustlib/x86_64-unknown-openbsd/lib/librustc_cratesio_shim-d394d59094b9c079.so +lib/rustlib/x86_64-unknown-openbsd/lib/librustc_data_structures-7083d471d3191327.so +lib/rustlib/x86_64-unknown-openbsd/lib/librustc_demangle-e4dda9c6df674feb.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/librustc_driver-3efb0d5d014cb2a9.so +lib/rustlib/x86_64-unknown-openbsd/lib/librustc_errors-650edcd1a9adcdd6.so +lib/rustlib/x86_64-unknown-openbsd/lib/librustc_hash-7c6da29b5e432c7d.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/librustc_incremental-a7b696a0cc55f5a1.so +lib/rustlib/x86_64-unknown-openbsd/lib/librustc_lint-6176003848f062c3.so +lib/rustlib/x86_64-unknown-openbsd/lib/librustc_metadata-e48085903bd59120.so +lib/rustlib/x86_64-unknown-openbsd/lib/librustc_mir-4ac5ffb8dfc788eb.so +lib/rustlib/x86_64-unknown-openbsd/lib/librustc_passes-70d3c30efd2d8177.so +lib/rustlib/x86_64-unknown-openbsd/lib/librustc_platform_intrinsics-38ca31a35482d80a.so +lib/rustlib/x86_64-unknown-openbsd/lib/librustc_plugin-ce0222a1c596d0fc.so +lib/rustlib/x86_64-unknown-openbsd/lib/librustc_privacy-afaa837e37970da6.so +lib/rustlib/x86_64-unknown-openbsd/lib/librustc_rayon-f06299b69ea9eaf4.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/librustc_rayon_core-6499e91f799bddd4.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/librustc_resolve-a5d149c9b39cc0d3.so +lib/rustlib/x86_64-unknown-openbsd/lib/librustc_save_analysis-dc4f7270bf981841.so +lib/rustlib/x86_64-unknown-openbsd/lib/librustc_serialize-5a110a8f30c9965c.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/librustc_target-fb08fbb37d962758.so +lib/rustlib/x86_64-unknown-openbsd/lib/librustc_traits-62393eaa08ef021f.so +lib/rustlib/x86_64-unknown-openbsd/lib/librustc_typeck-11ad9ee035265b29.so +lib/rustlib/x86_64-unknown-openbsd/lib/libscoped_tls-34abb5099d218f45.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libscopeguard-2a730d4602af4a9a.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libserialize-36617b98a50b4c8d.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libserialize-36617b98a50b4c8d.so +lib/rustlib/x86_64-unknown-openbsd/lib/libsmallvec-e6203b5702b9f83a.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libstable_deref_trait-78eabd754b0cbde3.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libstd-6fce3a3a7090842c.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libstd-6fce3a3a7090842c.so +lib/rustlib/x86_64-unknown-openbsd/lib/libstd_unicode-5e0e2753c4519532.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libsyntax-705cbc0797963891.so +lib/rustlib/x86_64-unknown-openbsd/lib/libsyntax_ext-13a44f55756d1274.so +lib/rustlib/x86_64-unknown-openbsd/lib/libsyntax_pos-8ce47d60e25c4913.so +lib/rustlib/x86_64-unknown-openbsd/lib/libtempfile-49598d2a7d44dd7d.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libterm-42d4761d35e620b9.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libterm-42d4761d35e620b9.so +lib/rustlib/x86_64-unknown-openbsd/lib/libtermcolor-78fbaddeadcf86df.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libtest-657908db8efe9c73.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libtest-657908db8efe9c73.so +lib/rustlib/x86_64-unknown-openbsd/lib/libunicode_width-03715d5927c6b3dd.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libunreachable-d996c7473e3e034c.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libunwind-bfc2576a6e60fe6a.rlib +lib/rustlib/x86_64-unknown-openbsd/lib/libvoid-c5f289f384d1fb40.rlib diff --git a/lang/rust/pkg/PFRAG.i386-doc b/lang/rust/pkg/PFRAG.i386-doc index be492eb07cd..6d7fa74821e 100644 --- a/lang/rust/pkg/PFRAG.i386-doc +++ b/lang/rust/pkg/PFRAG.i386-doc @@ -1,16 +1,3 @@ -@comment $OpenBSD: PFRAG.i386-doc,v 1.4 2018/06/29 05:19:47 landry Exp $ -share/doc/rust/html/core/arch/x86/__readeflags.v.html -share/doc/rust/html/core/arch/x86/__writeeflags.v.html -share/doc/rust/html/core/arch/x86/fn.__readeflags.html -share/doc/rust/html/core/arch/x86/fn.__writeeflags.html -share/doc/rust/html/core/arch/x86_64/__readeflags.v.html -share/doc/rust/html/core/arch/x86_64/__writeeflags.v.html -share/doc/rust/html/core/arch/x86_64/fn.__readeflags.html -share/doc/rust/html/core/arch/x86_64/fn.__writeeflags.html -share/doc/rust/html/core/coresimd/x86/eflags/ -share/doc/rust/html/core/coresimd/x86/eflags/__readeflags.v.html -share/doc/rust/html/core/coresimd/x86/eflags/__writeeflags.v.html -share/doc/rust/html/core/coresimd/x86/eflags/fn.__readeflags.html -share/doc/rust/html/core/coresimd/x86/eflags/fn.__writeeflags.html +@comment $OpenBSD: PFRAG.i386-doc,v 1.5 2018/09/16 16:35:27 landry Exp $ share/doc/rust/html/src/std/up/stdsimd/stdsimd/arch/detect/arch/x86.rs.html share/doc/rust/html/src/std/up/stdsimd/stdsimd/arch/detect/os/x86.rs.html diff --git a/lang/rust/pkg/PFRAG.i386-main b/lang/rust/pkg/PFRAG.i386-main index 6b307ef74a1..109f7f797ed 100644 --- a/lang/rust/pkg/PFRAG.i386-main +++ b/lang/rust/pkg/PFRAG.i386-main @@ -1,133 +1,136 @@ -@comment $OpenBSD: PFRAG.i386-main,v 1.20 2018/08/06 19:07:50 landry Exp $ -lib/libarena-29a8b18e2ce7f987.so -lib/libfmt_macros-1c781ecbcfd200f2.so -lib/libgraphviz-a48884a6595ab803.so -lib/libproc_macro-8b633fca1fb1ee2a.so -lib/librustc-a7954aa647a1bdc6.so -lib/librustc_allocator-2bb987080cba576b.so -lib/librustc_borrowck-06b884990d32fc28.so -lib/librustc_codegen_utils-b897cace379cb0bf.so -lib/librustc_cratesio_shim-e6964daa8193388a.so -lib/librustc_data_structures-71e83a18d10d2986.so -lib/librustc_driver-c6e4553daad0c2b5.so -lib/librustc_errors-f894ba9dac4a0e24.so -lib/librustc_incremental-761fafd2bda51ee3.so -lib/librustc_lint-ec92a22a9449c312.so -lib/librustc_metadata-b3a5ab7426dc2cce.so -lib/librustc_mir-8d9d2053c88cd5a6.so -lib/librustc_passes-c175574bd04f2158.so -lib/librustc_platform_intrinsics-9c7a97e2d2aca540.so -lib/librustc_plugin-228d0514eb428b4c.so -lib/librustc_privacy-a892b4e23a847944.so -lib/librustc_resolve-afbe39e8fcb8898c.so -lib/librustc_save_analysis-31089561d331fac0.so -lib/librustc_target-246bcb938ddc4303.so -lib/librustc_traits-b8f479f85fbfed57.so -lib/librustc_typeck-8700e937aad6f4c6.so -lib/libserialize-9480ca10c9a6be9e.so -lib/libstd-c6fab95204db6e83.so -lib/libsyntax-b8c6bb4726a67777.so -lib/libsyntax_ext-7fda18d2105530da.so -lib/libsyntax_pos-3a0e82f67f5da4c7.so -lib/libterm-3493ebf880e40a3f.so -lib/libtest-2cc07ab5dbc2837f.so +@comment $OpenBSD: PFRAG.i386-main,v 1.21 2018/09/16 16:35:27 landry Exp $ +lib/libarena-6e25da11bdd98ff9.so +lib/libfmt_macros-718662bf162832fb.so +lib/libgraphviz-ac784eaa57ff287d.so +lib/libproc_macro-10553ae86a6c948e.so +lib/librustc-c1d69c206e360a5a.so +lib/librustc_allocator-a67c32499f810767.so +lib/librustc_borrowck-d97fcf00edd0db1f.so +lib/librustc_codegen_utils-1c920a08e6b9b85f.so +lib/librustc_cratesio_shim-db7000d4409c0685.so +lib/librustc_data_structures-0ec82f86d98331a0.so +lib/librustc_driver-7d4c2e223098cbb4.so +lib/librustc_errors-c7a47f32354b3ceb.so +lib/librustc_incremental-815062b87e9eef5e.so +lib/librustc_lint-c2eb68e2fc6687a9.so +lib/librustc_metadata-b65c17ae6ea8b0c4.so +lib/librustc_mir-5ade0e9a332ceaf7.so +lib/librustc_passes-cbe4477a0be54f99.so +lib/librustc_platform_intrinsics-aedf927f7f9b075c.so +lib/librustc_plugin-006058ab654312af.so +lib/librustc_privacy-ac7194734ebc705c.so +lib/librustc_resolve-3c5cfada5f4e16f8.so +lib/librustc_save_analysis-dd2091402d21ed56.so +lib/librustc_target-68ab7eba5cde5952.so +lib/librustc_traits-ccb41f691b19398a.so +lib/librustc_typeck-5406cd4d56b802b8.so +lib/libserialize-7477e858838ba938.so +lib/libstd-39b106a706114e8c.so +lib/libsyntax-3dc9c8f7bb2457a4.so +lib/libsyntax_ext-a54b004e644fc330.so +lib/libsyntax_pos-45e0106db5eb6cff.so +lib/libterm-ad31cafc64b4b0da.so +lib/libtest-32302537f9f11c86.so lib/rustlib/i686-unknown-openbsd/ lib/rustlib/i686-unknown-openbsd/codegen-backends/ lib/rustlib/i686-unknown-openbsd/codegen-backends/librustc_codegen_llvm-llvm.so lib/rustlib/i686-unknown-openbsd/lib/ -lib/rustlib/i686-unknown-openbsd/lib/liballoc-5f2cb937f77a0f8f.rlib -lib/rustlib/i686-unknown-openbsd/lib/liballoc_jemalloc-d05f59d166b2e922.rlib -lib/rustlib/i686-unknown-openbsd/lib/liballoc_system-f31973932aba5fa0.rlib -lib/rustlib/i686-unknown-openbsd/lib/libar-290aeb994664d2f5.rlib -lib/rustlib/i686-unknown-openbsd/lib/libarena-29a8b18e2ce7f987.so -lib/rustlib/i686-unknown-openbsd/lib/libarrayvec-defca2b2e8701ee2.rlib -lib/rustlib/i686-unknown-openbsd/lib/libatty-c83be06b3c59d5b3.rlib -lib/rustlib/i686-unknown-openbsd/lib/libbacktrace-7b543b9bc2ccb911.rlib -lib/rustlib/i686-unknown-openbsd/lib/libbacktrace_sys-50cb1109b09ef97e.rlib -lib/rustlib/i686-unknown-openbsd/lib/libbitflags-46e68a37dd8aa0f5.rlib -lib/rustlib/i686-unknown-openbsd/lib/libbyteorder-bcb03988361da410.rlib -lib/rustlib/i686-unknown-openbsd/lib/libcfg_if-dc96b2892d517c04.rlib -lib/rustlib/i686-unknown-openbsd/lib/libchalk_engine-851cdecdeca65ef1.rlib -lib/rustlib/i686-unknown-openbsd/lib/libchalk_macros-03a87a128d97f4de.rlib -lib/rustlib/i686-unknown-openbsd/lib/libcompiler_builtins-332a6961c7dcd3a5.rlib -lib/rustlib/i686-unknown-openbsd/lib/libcore-be50725927267fbe.rlib -lib/rustlib/i686-unknown-openbsd/lib/libcrossbeam_deque-0e51c406f4dfc03f.rlib -lib/rustlib/i686-unknown-openbsd/lib/libcrossbeam_epoch-370cd6d9a3f6e05c.rlib -lib/rustlib/i686-unknown-openbsd/lib/libcrossbeam_utils-d6c8d15623a7c3e4.rlib -lib/rustlib/i686-unknown-openbsd/lib/libdatafrog-0cf698a485d0a318.rlib -lib/rustlib/i686-unknown-openbsd/lib/libeither-6eff6311ba8e402b.rlib -lib/rustlib/i686-unknown-openbsd/lib/libena-9290deacad24df58.rlib -lib/rustlib/i686-unknown-openbsd/lib/libenv_logger-d0cdf649a795345a.rlib -lib/rustlib/i686-unknown-openbsd/lib/libflate2-c32e18b3e07f2d97.rlib -lib/rustlib/i686-unknown-openbsd/lib/libfmt_macros-1c781ecbcfd200f2.so -lib/rustlib/i686-unknown-openbsd/lib/libgetopts-185cf989098d2d46.rlib -lib/rustlib/i686-unknown-openbsd/lib/libgraphviz-a48884a6595ab803.so -lib/rustlib/i686-unknown-openbsd/lib/libhumantime-52dcd3463955e1f1.rlib -lib/rustlib/i686-unknown-openbsd/lib/libjobserver-1f0893b80313e5a0.rlib -lib/rustlib/i686-unknown-openbsd/lib/liblazy_static-1a66e9c1e705b6eb.rlib -lib/rustlib/i686-unknown-openbsd/lib/liblazy_static-bfb1a2d0cfceea2d.rlib -lib/rustlib/i686-unknown-openbsd/lib/liblibc-9cfcca0b46ac3df7.rlib -lib/rustlib/i686-unknown-openbsd/lib/liblibc-fc953255109fceb7.rlib -lib/rustlib/i686-unknown-openbsd/lib/liblog-2ffd3bd72cf7b8ef.rlib -lib/rustlib/i686-unknown-openbsd/lib/liblog_settings-71a38b58a367fdb3.rlib -lib/rustlib/i686-unknown-openbsd/lib/libmemoffset-6f94a678f1ab848f.rlib -lib/rustlib/i686-unknown-openbsd/lib/libminiz_sys-55caeb9aa94e1af3.rlib -lib/rustlib/i686-unknown-openbsd/lib/libnodrop-1c6a31f4a69d0839.rlib -lib/rustlib/i686-unknown-openbsd/lib/libnum_cpus-e745d11a61f8b197.rlib -lib/rustlib/i686-unknown-openbsd/lib/libowning_ref-19acb253a4fb246f.rlib -lib/rustlib/i686-unknown-openbsd/lib/libpanic_abort-3a02bacaf869b25d.rlib -lib/rustlib/i686-unknown-openbsd/lib/libpanic_unwind-bdae35806814e366.rlib -lib/rustlib/i686-unknown-openbsd/lib/libparking_lot-eae7dd809aa1956b.rlib -lib/rustlib/i686-unknown-openbsd/lib/libparking_lot_core-5a656818377e2c11.rlib -lib/rustlib/i686-unknown-openbsd/lib/libpolonius_engine-4fa3ccead96cdc49.rlib -lib/rustlib/i686-unknown-openbsd/lib/libproc_macro-8b633fca1fb1ee2a.so -lib/rustlib/i686-unknown-openbsd/lib/libquick_error-256ff0a502b1184a.rlib -lib/rustlib/i686-unknown-openbsd/lib/librand-47eb23bc937bd37f.rlib -lib/rustlib/i686-unknown-openbsd/lib/libremove_dir_all-92053c62af298590.rlib -lib/rustlib/i686-unknown-openbsd/lib/librls_data-1e5c016109b6fcc3.rlib -lib/rustlib/i686-unknown-openbsd/lib/librls_span-5b12ae9adb3454f2.rlib -lib/rustlib/i686-unknown-openbsd/lib/librustc-a7954aa647a1bdc6.so -lib/rustlib/i686-unknown-openbsd/lib/librustc_allocator-2bb987080cba576b.so -lib/rustlib/i686-unknown-openbsd/lib/librustc_apfloat-f14cc93d199e8b09.rlib -lib/rustlib/i686-unknown-openbsd/lib/librustc_borrowck-06b884990d32fc28.so -lib/rustlib/i686-unknown-openbsd/lib/librustc_codegen_utils-b897cace379cb0bf.so -lib/rustlib/i686-unknown-openbsd/lib/librustc_cratesio_shim-e6964daa8193388a.so -lib/rustlib/i686-unknown-openbsd/lib/librustc_data_structures-71e83a18d10d2986.so -lib/rustlib/i686-unknown-openbsd/lib/librustc_demangle-8718a3da169af324.rlib -lib/rustlib/i686-unknown-openbsd/lib/librustc_driver-c6e4553daad0c2b5.so -lib/rustlib/i686-unknown-openbsd/lib/librustc_errors-f894ba9dac4a0e24.so -lib/rustlib/i686-unknown-openbsd/lib/librustc_hash-a08cdf86b1b4e50b.rlib -lib/rustlib/i686-unknown-openbsd/lib/librustc_incremental-761fafd2bda51ee3.so -lib/rustlib/i686-unknown-openbsd/lib/librustc_lint-ec92a22a9449c312.so -lib/rustlib/i686-unknown-openbsd/lib/librustc_metadata-b3a5ab7426dc2cce.so -lib/rustlib/i686-unknown-openbsd/lib/librustc_mir-8d9d2053c88cd5a6.so -lib/rustlib/i686-unknown-openbsd/lib/librustc_passes-c175574bd04f2158.so -lib/rustlib/i686-unknown-openbsd/lib/librustc_platform_intrinsics-9c7a97e2d2aca540.so -lib/rustlib/i686-unknown-openbsd/lib/librustc_plugin-228d0514eb428b4c.so -lib/rustlib/i686-unknown-openbsd/lib/librustc_privacy-a892b4e23a847944.so -lib/rustlib/i686-unknown-openbsd/lib/librustc_rayon-d8866c68cf8d1200.rlib -lib/rustlib/i686-unknown-openbsd/lib/librustc_rayon_core-48888494f69e3050.rlib -lib/rustlib/i686-unknown-openbsd/lib/librustc_resolve-afbe39e8fcb8898c.so -lib/rustlib/i686-unknown-openbsd/lib/librustc_save_analysis-31089561d331fac0.so -lib/rustlib/i686-unknown-openbsd/lib/librustc_serialize-8351946d0caa47d7.rlib -lib/rustlib/i686-unknown-openbsd/lib/librustc_target-246bcb938ddc4303.so -lib/rustlib/i686-unknown-openbsd/lib/librustc_traits-b8f479f85fbfed57.so -lib/rustlib/i686-unknown-openbsd/lib/librustc_typeck-8700e937aad6f4c6.so -lib/rustlib/i686-unknown-openbsd/lib/libscoped_tls-0049749f7763fb97.rlib -lib/rustlib/i686-unknown-openbsd/lib/libscopeguard-c42629df979e17e1.rlib -lib/rustlib/i686-unknown-openbsd/lib/libserialize-9480ca10c9a6be9e.so -lib/rustlib/i686-unknown-openbsd/lib/libsmallvec-6869cd50dca5dba7.rlib -lib/rustlib/i686-unknown-openbsd/lib/libstable_deref_trait-b96f0f20aa7f2eb5.rlib -lib/rustlib/i686-unknown-openbsd/lib/libstd-c6fab95204db6e83.rlib -lib/rustlib/i686-unknown-openbsd/lib/libstd-c6fab95204db6e83.so -lib/rustlib/i686-unknown-openbsd/lib/libstd_unicode-bda5cd2610d39a5e.rlib -lib/rustlib/i686-unknown-openbsd/lib/libsyntax-b8c6bb4726a67777.so -lib/rustlib/i686-unknown-openbsd/lib/libsyntax_ext-7fda18d2105530da.so -lib/rustlib/i686-unknown-openbsd/lib/libsyntax_pos-3a0e82f67f5da4c7.so -lib/rustlib/i686-unknown-openbsd/lib/libtempdir-17eb35057ac22c9f.rlib -lib/rustlib/i686-unknown-openbsd/lib/libterm-3493ebf880e40a3f.so -lib/rustlib/i686-unknown-openbsd/lib/libtermcolor-320f009132f98fad.rlib -lib/rustlib/i686-unknown-openbsd/lib/libtest-2cc07ab5dbc2837f.rlib -lib/rustlib/i686-unknown-openbsd/lib/libtest-2cc07ab5dbc2837f.so -lib/rustlib/i686-unknown-openbsd/lib/libunicode_width-a3fa1f922aef3c9e.rlib -lib/rustlib/i686-unknown-openbsd/lib/libunwind-284eb88b0f2fb35f.rlib +lib/rustlib/i686-unknown-openbsd/lib/liballoc-f37bb29ee45b5a57.rlib +lib/rustlib/i686-unknown-openbsd/lib/liballoc_jemalloc-7e0e99c00843312e.rlib +lib/rustlib/i686-unknown-openbsd/lib/liballoc_system-fd53a8620801cabe.rlib +lib/rustlib/i686-unknown-openbsd/lib/libarena-6e25da11bdd98ff9.so +lib/rustlib/i686-unknown-openbsd/lib/libarrayvec-5e3f0cc490d247b6.rlib +lib/rustlib/i686-unknown-openbsd/lib/libatty-815771a13bd4bf10.rlib +lib/rustlib/i686-unknown-openbsd/lib/libbacktrace-f4841112824500e9.rlib +lib/rustlib/i686-unknown-openbsd/lib/libbacktrace_sys-8eb031d24f8bedf5.rlib +lib/rustlib/i686-unknown-openbsd/lib/libbitflags-854bf21de4cee6c7.rlib +lib/rustlib/i686-unknown-openbsd/lib/libbyteorder-7314b0d6dc077972.rlib +lib/rustlib/i686-unknown-openbsd/lib/libcfg_if-3c370b7af816fbfa.rlib +lib/rustlib/i686-unknown-openbsd/lib/libchalk_engine-8abd94831009561b.rlib +lib/rustlib/i686-unknown-openbsd/lib/libchalk_macros-c5dc2a21e850200e.rlib +lib/rustlib/i686-unknown-openbsd/lib/libcompiler_builtins-617b8b50d5bc1478.rlib +lib/rustlib/i686-unknown-openbsd/lib/libcore-d01aaaf51d4ce7ac.rlib +lib/rustlib/i686-unknown-openbsd/lib/libcrossbeam_deque-497b7e6a1f3085f9.rlib +lib/rustlib/i686-unknown-openbsd/lib/libcrossbeam_epoch-cf09f4e3f9c35d92.rlib +lib/rustlib/i686-unknown-openbsd/lib/libcrossbeam_utils-e42c40768d5a9ae4.rlib +lib/rustlib/i686-unknown-openbsd/lib/libdatafrog-1ccf4248638b7320.rlib +lib/rustlib/i686-unknown-openbsd/lib/libeither-975c18bb592a9adf.rlib +lib/rustlib/i686-unknown-openbsd/lib/libena-f23d4af7a0637a73.rlib +lib/rustlib/i686-unknown-openbsd/lib/libenv_logger-ac536c2dd7d64ee5.rlib +lib/rustlib/i686-unknown-openbsd/lib/libflate2-ee7112c34876abc8.rlib +lib/rustlib/i686-unknown-openbsd/lib/libfmt_macros-718662bf162832fb.so +lib/rustlib/i686-unknown-openbsd/lib/libgetopts-9d177160692a6e1c.rlib +lib/rustlib/i686-unknown-openbsd/lib/libgraphviz-ac784eaa57ff287d.so +lib/rustlib/i686-unknown-openbsd/lib/libhumantime-ce894801b4700e50.rlib +lib/rustlib/i686-unknown-openbsd/lib/libjobserver-aa68a4b6b8648391.rlib +lib/rustlib/i686-unknown-openbsd/lib/liblazy_static-77eadb688df24141.rlib +lib/rustlib/i686-unknown-openbsd/lib/liblazy_static-ae8beaf445da37d0.rlib +lib/rustlib/i686-unknown-openbsd/lib/liblibc-2335cb42f1fca470.rlib +lib/rustlib/i686-unknown-openbsd/lib/liblibc-ad8346449670c5ca.rlib +lib/rustlib/i686-unknown-openbsd/lib/liblog-d385fc4c50815f4a.rlib +lib/rustlib/i686-unknown-openbsd/lib/liblog_settings-97efdc66113485da.rlib +lib/rustlib/i686-unknown-openbsd/lib/libmemoffset-68e49b57c024cd6a.rlib +lib/rustlib/i686-unknown-openbsd/lib/libminiz_sys-43be0aa11318607d.rlib +lib/rustlib/i686-unknown-openbsd/lib/libnodrop-5566a339ce311b31.rlib +lib/rustlib/i686-unknown-openbsd/lib/libnum_cpus-0f1e15af39aca175.rlib +lib/rustlib/i686-unknown-openbsd/lib/libowning_ref-5476e25e1e75624f.rlib +lib/rustlib/i686-unknown-openbsd/lib/libpanic_abort-acd4d3dff3cca16f.rlib +lib/rustlib/i686-unknown-openbsd/lib/libpanic_unwind-7629153f111307b1.rlib +lib/rustlib/i686-unknown-openbsd/lib/libparking_lot-2ac2960969b873e8.rlib +lib/rustlib/i686-unknown-openbsd/lib/libparking_lot_core-cef2dd8631109e24.rlib +lib/rustlib/i686-unknown-openbsd/lib/libpolonius_engine-02417cd4e2d502cf.rlib +lib/rustlib/i686-unknown-openbsd/lib/libproc_macro-10553ae86a6c948e.so +lib/rustlib/i686-unknown-openbsd/lib/libquick_error-091f8b1d4eb86603.rlib +lib/rustlib/i686-unknown-openbsd/lib/librand-4763a6df57a99351.rlib +lib/rustlib/i686-unknown-openbsd/lib/libremove_dir_all-ca1231702efb3d79.rlib +lib/rustlib/i686-unknown-openbsd/lib/librls_data-7ad274bc1f68f0e6.rlib +lib/rustlib/i686-unknown-openbsd/lib/librls_span-708eee9f0a80b8de.rlib +lib/rustlib/i686-unknown-openbsd/lib/librustc-c1d69c206e360a5a.so +lib/rustlib/i686-unknown-openbsd/lib/librustc_allocator-a67c32499f810767.so +lib/rustlib/i686-unknown-openbsd/lib/librustc_apfloat-92565a2972c9920f.rlib +lib/rustlib/i686-unknown-openbsd/lib/librustc_borrowck-d97fcf00edd0db1f.so +lib/rustlib/i686-unknown-openbsd/lib/librustc_codegen_utils-1c920a08e6b9b85f.so +lib/rustlib/i686-unknown-openbsd/lib/librustc_cratesio_shim-db7000d4409c0685.so +lib/rustlib/i686-unknown-openbsd/lib/librustc_data_structures-0ec82f86d98331a0.so +lib/rustlib/i686-unknown-openbsd/lib/librustc_demangle-7c27e9aa4eec254e.rlib +lib/rustlib/i686-unknown-openbsd/lib/librustc_driver-7d4c2e223098cbb4.so +lib/rustlib/i686-unknown-openbsd/lib/librustc_errors-c7a47f32354b3ceb.so +lib/rustlib/i686-unknown-openbsd/lib/librustc_hash-f2d6a0c63092df90.rlib +lib/rustlib/i686-unknown-openbsd/lib/librustc_incremental-815062b87e9eef5e.so +lib/rustlib/i686-unknown-openbsd/lib/librustc_lint-c2eb68e2fc6687a9.so +lib/rustlib/i686-unknown-openbsd/lib/librustc_metadata-b65c17ae6ea8b0c4.so +lib/rustlib/i686-unknown-openbsd/lib/librustc_mir-5ade0e9a332ceaf7.so +lib/rustlib/i686-unknown-openbsd/lib/librustc_passes-cbe4477a0be54f99.so +lib/rustlib/i686-unknown-openbsd/lib/librustc_platform_intrinsics-aedf927f7f9b075c.so +lib/rustlib/i686-unknown-openbsd/lib/librustc_plugin-006058ab654312af.so +lib/rustlib/i686-unknown-openbsd/lib/librustc_privacy-ac7194734ebc705c.so +lib/rustlib/i686-unknown-openbsd/lib/librustc_rayon-272f8a3e730c7658.rlib +lib/rustlib/i686-unknown-openbsd/lib/librustc_rayon_core-ba0efa9f84c967cd.rlib +lib/rustlib/i686-unknown-openbsd/lib/librustc_resolve-3c5cfada5f4e16f8.so +lib/rustlib/i686-unknown-openbsd/lib/librustc_save_analysis-dd2091402d21ed56.so +lib/rustlib/i686-unknown-openbsd/lib/librustc_serialize-92360b44a13629f4.rlib +lib/rustlib/i686-unknown-openbsd/lib/librustc_target-68ab7eba5cde5952.so +lib/rustlib/i686-unknown-openbsd/lib/librustc_traits-ccb41f691b19398a.so +lib/rustlib/i686-unknown-openbsd/lib/librustc_typeck-5406cd4d56b802b8.so +lib/rustlib/i686-unknown-openbsd/lib/libscoped_tls-ebb1952d50e74e1c.rlib +lib/rustlib/i686-unknown-openbsd/lib/libscopeguard-9459246b59b694a0.rlib +lib/rustlib/i686-unknown-openbsd/lib/libserialize-7477e858838ba938.rlib +lib/rustlib/i686-unknown-openbsd/lib/libserialize-7477e858838ba938.so +lib/rustlib/i686-unknown-openbsd/lib/libsmallvec-cf77ca79bacd3f93.rlib +lib/rustlib/i686-unknown-openbsd/lib/libstable_deref_trait-16dce03bd7a00700.rlib +lib/rustlib/i686-unknown-openbsd/lib/libstd-39b106a706114e8c.rlib +lib/rustlib/i686-unknown-openbsd/lib/libstd-39b106a706114e8c.so +lib/rustlib/i686-unknown-openbsd/lib/libstd_unicode-ce131934e7dbcf9c.rlib +lib/rustlib/i686-unknown-openbsd/lib/libsyntax-3dc9c8f7bb2457a4.so +lib/rustlib/i686-unknown-openbsd/lib/libsyntax_ext-a54b004e644fc330.so +lib/rustlib/i686-unknown-openbsd/lib/libsyntax_pos-45e0106db5eb6cff.so +lib/rustlib/i686-unknown-openbsd/lib/libtempfile-9ecde78cdc235df7.rlib +lib/rustlib/i686-unknown-openbsd/lib/libterm-ad31cafc64b4b0da.rlib +lib/rustlib/i686-unknown-openbsd/lib/libterm-ad31cafc64b4b0da.so +lib/rustlib/i686-unknown-openbsd/lib/libtermcolor-77f9d3191751678d.rlib +lib/rustlib/i686-unknown-openbsd/lib/libtest-32302537f9f11c86.rlib +lib/rustlib/i686-unknown-openbsd/lib/libtest-32302537f9f11c86.so +lib/rustlib/i686-unknown-openbsd/lib/libunicode_width-6c9142604b6689ff.rlib +lib/rustlib/i686-unknown-openbsd/lib/libunreachable-fcd42099feb05121.rlib +lib/rustlib/i686-unknown-openbsd/lib/libunwind-2c74f5d41cb202eb.rlib +lib/rustlib/i686-unknown-openbsd/lib/libvoid-3aee9b10699f6049.rlib diff --git a/lang/rust/pkg/PLIST-doc b/lang/rust/pkg/PLIST-doc index 0915e08a408..b44bd2cc3b5 100644 --- a/lang/rust/pkg/PLIST-doc +++ b/lang/rust/pkg/PLIST-doc @@ -1,4 +1,4 @@ -@comment $OpenBSD: PLIST-doc,v 1.31 2018/08/06 19:07:50 landry Exp $ +@comment $OpenBSD: PLIST-doc,v 1.32 2018/09/16 16:35:27 landry Exp $ %%aarch64%% %%amd64%% %%i386%% @@ -27,7 +27,6 @@ share/doc/rust/html/alloc/alloc/ share/doc/rust/html/alloc/alloc/Alloc.t.html share/doc/rust/html/alloc/alloc/AllocErr.t.html share/doc/rust/html/alloc/alloc/CannotReallocInPlace.t.html -share/doc/rust/html/alloc/alloc/CollectionAllocErr.t.html share/doc/rust/html/alloc/alloc/Excess.t.html share/doc/rust/html/alloc/alloc/Global.t.html share/doc/rust/html/alloc/alloc/GlobalAlloc.t.html @@ -36,7 +35,6 @@ share/doc/rust/html/alloc/alloc/LayoutErr.t.html share/doc/rust/html/alloc/alloc/alloc.v.html share/doc/rust/html/alloc/alloc/alloc_zeroed.v.html share/doc/rust/html/alloc/alloc/dealloc.v.html -share/doc/rust/html/alloc/alloc/enum.CollectionAllocErr.html share/doc/rust/html/alloc/alloc/fn.alloc.html share/doc/rust/html/alloc/alloc/fn.alloc_zeroed.html share/doc/rust/html/alloc/alloc/fn.dealloc.html @@ -54,29 +52,6 @@ share/doc/rust/html/alloc/alloc/struct.Layout.html share/doc/rust/html/alloc/alloc/struct.LayoutErr.html share/doc/rust/html/alloc/alloc/trait.Alloc.html share/doc/rust/html/alloc/alloc/trait.GlobalAlloc.html -share/doc/rust/html/alloc/allocator/ -share/doc/rust/html/alloc/allocator/index.html -share/doc/rust/html/alloc/allocator/sidebar-items.js -share/doc/rust/html/alloc/arc/ -share/doc/rust/html/alloc/arc/Arc.t.html -share/doc/rust/html/alloc/arc/Weak.t.html -share/doc/rust/html/alloc/arc/index.html -share/doc/rust/html/alloc/arc/sidebar-items.js -share/doc/rust/html/alloc/arc/struct.Arc.html -share/doc/rust/html/alloc/arc/struct.Weak.html -share/doc/rust/html/alloc/binary_heap/ -share/doc/rust/html/alloc/binary_heap/BinaryHeap.t.html -share/doc/rust/html/alloc/binary_heap/Drain.t.html -share/doc/rust/html/alloc/binary_heap/IntoIter.t.html -share/doc/rust/html/alloc/binary_heap/Iter.t.html -share/doc/rust/html/alloc/binary_heap/PeekMut.t.html -share/doc/rust/html/alloc/binary_heap/index.html -share/doc/rust/html/alloc/binary_heap/sidebar-items.js -share/doc/rust/html/alloc/binary_heap/struct.BinaryHeap.html -share/doc/rust/html/alloc/binary_heap/struct.Drain.html -share/doc/rust/html/alloc/binary_heap/struct.IntoIter.html -share/doc/rust/html/alloc/binary_heap/struct.Iter.html -share/doc/rust/html/alloc/binary_heap/struct.PeekMut.html share/doc/rust/html/alloc/borrow/ share/doc/rust/html/alloc/borrow/Borrow.t.html share/doc/rust/html/alloc/borrow/BorrowMut.t.html @@ -97,95 +72,139 @@ share/doc/rust/html/alloc/boxed/sidebar-items.js share/doc/rust/html/alloc/boxed/struct.Box.html share/doc/rust/html/alloc/boxed/struct.PinBox.html share/doc/rust/html/alloc/boxed/trait.FnBox.html -share/doc/rust/html/alloc/btree/ -share/doc/rust/html/alloc/btree/map/ -share/doc/rust/html/alloc/btree/map/BTreeMap.t.html -share/doc/rust/html/alloc/btree/map/Entry.t.html -share/doc/rust/html/alloc/btree/map/IntoIter.t.html -share/doc/rust/html/alloc/btree/map/Iter.t.html -share/doc/rust/html/alloc/btree/map/IterMut.t.html -share/doc/rust/html/alloc/btree/map/Keys.t.html -share/doc/rust/html/alloc/btree/map/OccupiedEntry.t.html -share/doc/rust/html/alloc/btree/map/Range.t.html -share/doc/rust/html/alloc/btree/map/RangeMut.t.html -share/doc/rust/html/alloc/btree/map/VacantEntry.t.html -share/doc/rust/html/alloc/btree/map/Values.t.html -share/doc/rust/html/alloc/btree/map/ValuesMut.t.html -share/doc/rust/html/alloc/btree/map/enum.Entry.html -share/doc/rust/html/alloc/btree/map/struct.BTreeMap.html -share/doc/rust/html/alloc/btree/map/struct.IntoIter.html -share/doc/rust/html/alloc/btree/map/struct.Iter.html -share/doc/rust/html/alloc/btree/map/struct.IterMut.html -share/doc/rust/html/alloc/btree/map/struct.Keys.html -share/doc/rust/html/alloc/btree/map/struct.OccupiedEntry.html -share/doc/rust/html/alloc/btree/map/struct.Range.html -share/doc/rust/html/alloc/btree/map/struct.RangeMut.html -share/doc/rust/html/alloc/btree/map/struct.VacantEntry.html -share/doc/rust/html/alloc/btree/map/struct.Values.html -share/doc/rust/html/alloc/btree/map/struct.ValuesMut.html -share/doc/rust/html/alloc/btree/set/ -share/doc/rust/html/alloc/btree/set/BTreeSet.t.html -share/doc/rust/html/alloc/btree/set/Difference.t.html -share/doc/rust/html/alloc/btree/set/Intersection.t.html -share/doc/rust/html/alloc/btree/set/IntoIter.t.html -share/doc/rust/html/alloc/btree/set/Iter.t.html -share/doc/rust/html/alloc/btree/set/Range.t.html -share/doc/rust/html/alloc/btree/set/SymmetricDifference.t.html -share/doc/rust/html/alloc/btree/set/Union.t.html -share/doc/rust/html/alloc/btree/set/struct.BTreeSet.html -share/doc/rust/html/alloc/btree/set/struct.Difference.html -share/doc/rust/html/alloc/btree/set/struct.Intersection.html -share/doc/rust/html/alloc/btree/set/struct.IntoIter.html -share/doc/rust/html/alloc/btree/set/struct.Iter.html -share/doc/rust/html/alloc/btree/set/struct.Range.html -share/doc/rust/html/alloc/btree/set/struct.SymmetricDifference.html -share/doc/rust/html/alloc/btree/set/struct.Union.html -share/doc/rust/html/alloc/btree_map/ -share/doc/rust/html/alloc/btree_map/BTreeMap.t.html -share/doc/rust/html/alloc/btree_map/Entry.t.html -share/doc/rust/html/alloc/btree_map/IntoIter.t.html -share/doc/rust/html/alloc/btree_map/Iter.t.html -share/doc/rust/html/alloc/btree_map/IterMut.t.html -share/doc/rust/html/alloc/btree_map/Keys.t.html -share/doc/rust/html/alloc/btree_map/OccupiedEntry.t.html -share/doc/rust/html/alloc/btree_map/Range.t.html -share/doc/rust/html/alloc/btree_map/RangeMut.t.html -share/doc/rust/html/alloc/btree_map/VacantEntry.t.html -share/doc/rust/html/alloc/btree_map/Values.t.html -share/doc/rust/html/alloc/btree_map/ValuesMut.t.html -share/doc/rust/html/alloc/btree_map/enum.Entry.html -share/doc/rust/html/alloc/btree_map/index.html -share/doc/rust/html/alloc/btree_map/sidebar-items.js -share/doc/rust/html/alloc/btree_map/struct.BTreeMap.html -share/doc/rust/html/alloc/btree_map/struct.IntoIter.html -share/doc/rust/html/alloc/btree_map/struct.Iter.html -share/doc/rust/html/alloc/btree_map/struct.IterMut.html -share/doc/rust/html/alloc/btree_map/struct.Keys.html -share/doc/rust/html/alloc/btree_map/struct.OccupiedEntry.html -share/doc/rust/html/alloc/btree_map/struct.Range.html -share/doc/rust/html/alloc/btree_map/struct.RangeMut.html -share/doc/rust/html/alloc/btree_map/struct.VacantEntry.html -share/doc/rust/html/alloc/btree_map/struct.Values.html -share/doc/rust/html/alloc/btree_map/struct.ValuesMut.html -share/doc/rust/html/alloc/btree_set/ -share/doc/rust/html/alloc/btree_set/BTreeSet.t.html -share/doc/rust/html/alloc/btree_set/Difference.t.html -share/doc/rust/html/alloc/btree_set/Intersection.t.html -share/doc/rust/html/alloc/btree_set/IntoIter.t.html -share/doc/rust/html/alloc/btree_set/Iter.t.html -share/doc/rust/html/alloc/btree_set/Range.t.html -share/doc/rust/html/alloc/btree_set/SymmetricDifference.t.html -share/doc/rust/html/alloc/btree_set/Union.t.html -share/doc/rust/html/alloc/btree_set/index.html -share/doc/rust/html/alloc/btree_set/sidebar-items.js -share/doc/rust/html/alloc/btree_set/struct.BTreeSet.html -share/doc/rust/html/alloc/btree_set/struct.Difference.html -share/doc/rust/html/alloc/btree_set/struct.Intersection.html -share/doc/rust/html/alloc/btree_set/struct.IntoIter.html -share/doc/rust/html/alloc/btree_set/struct.Iter.html -share/doc/rust/html/alloc/btree_set/struct.Range.html -share/doc/rust/html/alloc/btree_set/struct.SymmetricDifference.html -share/doc/rust/html/alloc/btree_set/struct.Union.html +share/doc/rust/html/alloc/collections/ +share/doc/rust/html/alloc/collections/CollectionAllocErr.t.html +share/doc/rust/html/alloc/collections/binary_heap/ +share/doc/rust/html/alloc/collections/binary_heap/BinaryHeap.t.html +share/doc/rust/html/alloc/collections/binary_heap/Drain.t.html +share/doc/rust/html/alloc/collections/binary_heap/IntoIter.t.html +share/doc/rust/html/alloc/collections/binary_heap/Iter.t.html +share/doc/rust/html/alloc/collections/binary_heap/PeekMut.t.html +share/doc/rust/html/alloc/collections/binary_heap/index.html +share/doc/rust/html/alloc/collections/binary_heap/sidebar-items.js +share/doc/rust/html/alloc/collections/binary_heap/struct.BinaryHeap.html +share/doc/rust/html/alloc/collections/binary_heap/struct.Drain.html +share/doc/rust/html/alloc/collections/binary_heap/struct.IntoIter.html +share/doc/rust/html/alloc/collections/binary_heap/struct.Iter.html +share/doc/rust/html/alloc/collections/binary_heap/struct.PeekMut.html +share/doc/rust/html/alloc/collections/btree/ +share/doc/rust/html/alloc/collections/btree/map/ +share/doc/rust/html/alloc/collections/btree/map/BTreeMap.t.html +share/doc/rust/html/alloc/collections/btree/map/Entry.t.html +share/doc/rust/html/alloc/collections/btree/map/IntoIter.t.html +share/doc/rust/html/alloc/collections/btree/map/Iter.t.html +share/doc/rust/html/alloc/collections/btree/map/IterMut.t.html +share/doc/rust/html/alloc/collections/btree/map/Keys.t.html +share/doc/rust/html/alloc/collections/btree/map/OccupiedEntry.t.html +share/doc/rust/html/alloc/collections/btree/map/Range.t.html +share/doc/rust/html/alloc/collections/btree/map/RangeMut.t.html +share/doc/rust/html/alloc/collections/btree/map/VacantEntry.t.html +share/doc/rust/html/alloc/collections/btree/map/Values.t.html +share/doc/rust/html/alloc/collections/btree/map/ValuesMut.t.html +share/doc/rust/html/alloc/collections/btree/map/enum.Entry.html +share/doc/rust/html/alloc/collections/btree/map/struct.BTreeMap.html +share/doc/rust/html/alloc/collections/btree/map/struct.IntoIter.html +share/doc/rust/html/alloc/collections/btree/map/struct.Iter.html +share/doc/rust/html/alloc/collections/btree/map/struct.IterMut.html +share/doc/rust/html/alloc/collections/btree/map/struct.Keys.html +share/doc/rust/html/alloc/collections/btree/map/struct.OccupiedEntry.html +share/doc/rust/html/alloc/collections/btree/map/struct.Range.html +share/doc/rust/html/alloc/collections/btree/map/struct.RangeMut.html +share/doc/rust/html/alloc/collections/btree/map/struct.VacantEntry.html +share/doc/rust/html/alloc/collections/btree/map/struct.Values.html +share/doc/rust/html/alloc/collections/btree/map/struct.ValuesMut.html +share/doc/rust/html/alloc/collections/btree/set/ +share/doc/rust/html/alloc/collections/btree/set/BTreeSet.t.html +share/doc/rust/html/alloc/collections/btree/set/Difference.t.html +share/doc/rust/html/alloc/collections/btree/set/Intersection.t.html +share/doc/rust/html/alloc/collections/btree/set/IntoIter.t.html +share/doc/rust/html/alloc/collections/btree/set/Iter.t.html +share/doc/rust/html/alloc/collections/btree/set/Range.t.html +share/doc/rust/html/alloc/collections/btree/set/SymmetricDifference.t.html +share/doc/rust/html/alloc/collections/btree/set/Union.t.html +share/doc/rust/html/alloc/collections/btree/set/struct.BTreeSet.html +share/doc/rust/html/alloc/collections/btree/set/struct.Difference.html +share/doc/rust/html/alloc/collections/btree/set/struct.Intersection.html +share/doc/rust/html/alloc/collections/btree/set/struct.IntoIter.html +share/doc/rust/html/alloc/collections/btree/set/struct.Iter.html +share/doc/rust/html/alloc/collections/btree/set/struct.Range.html +share/doc/rust/html/alloc/collections/btree/set/struct.SymmetricDifference.html +share/doc/rust/html/alloc/collections/btree/set/struct.Union.html +share/doc/rust/html/alloc/collections/btree_map/ +share/doc/rust/html/alloc/collections/btree_map/BTreeMap.t.html +share/doc/rust/html/alloc/collections/btree_map/Entry.t.html +share/doc/rust/html/alloc/collections/btree_map/IntoIter.t.html +share/doc/rust/html/alloc/collections/btree_map/Iter.t.html +share/doc/rust/html/alloc/collections/btree_map/IterMut.t.html +share/doc/rust/html/alloc/collections/btree_map/Keys.t.html +share/doc/rust/html/alloc/collections/btree_map/OccupiedEntry.t.html +share/doc/rust/html/alloc/collections/btree_map/Range.t.html +share/doc/rust/html/alloc/collections/btree_map/RangeMut.t.html +share/doc/rust/html/alloc/collections/btree_map/VacantEntry.t.html +share/doc/rust/html/alloc/collections/btree_map/Values.t.html +share/doc/rust/html/alloc/collections/btree_map/ValuesMut.t.html +share/doc/rust/html/alloc/collections/btree_map/enum.Entry.html +share/doc/rust/html/alloc/collections/btree_map/index.html +share/doc/rust/html/alloc/collections/btree_map/sidebar-items.js +share/doc/rust/html/alloc/collections/btree_map/struct.BTreeMap.html +share/doc/rust/html/alloc/collections/btree_map/struct.IntoIter.html +share/doc/rust/html/alloc/collections/btree_map/struct.Iter.html +share/doc/rust/html/alloc/collections/btree_map/struct.IterMut.html +share/doc/rust/html/alloc/collections/btree_map/struct.Keys.html +share/doc/rust/html/alloc/collections/btree_map/struct.OccupiedEntry.html +share/doc/rust/html/alloc/collections/btree_map/struct.Range.html +share/doc/rust/html/alloc/collections/btree_map/struct.RangeMut.html +share/doc/rust/html/alloc/collections/btree_map/struct.VacantEntry.html +share/doc/rust/html/alloc/collections/btree_map/struct.Values.html +share/doc/rust/html/alloc/collections/btree_map/struct.ValuesMut.html +share/doc/rust/html/alloc/collections/btree_set/ +share/doc/rust/html/alloc/collections/btree_set/BTreeSet.t.html +share/doc/rust/html/alloc/collections/btree_set/Difference.t.html +share/doc/rust/html/alloc/collections/btree_set/Intersection.t.html +share/doc/rust/html/alloc/collections/btree_set/IntoIter.t.html +share/doc/rust/html/alloc/collections/btree_set/Iter.t.html +share/doc/rust/html/alloc/collections/btree_set/Range.t.html +share/doc/rust/html/alloc/collections/btree_set/SymmetricDifference.t.html +share/doc/rust/html/alloc/collections/btree_set/Union.t.html +share/doc/rust/html/alloc/collections/btree_set/index.html +share/doc/rust/html/alloc/collections/btree_set/sidebar-items.js +share/doc/rust/html/alloc/collections/btree_set/struct.BTreeSet.html +share/doc/rust/html/alloc/collections/btree_set/struct.Difference.html +share/doc/rust/html/alloc/collections/btree_set/struct.Intersection.html +share/doc/rust/html/alloc/collections/btree_set/struct.IntoIter.html +share/doc/rust/html/alloc/collections/btree_set/struct.Iter.html +share/doc/rust/html/alloc/collections/btree_set/struct.Range.html +share/doc/rust/html/alloc/collections/btree_set/struct.SymmetricDifference.html +share/doc/rust/html/alloc/collections/btree_set/struct.Union.html +share/doc/rust/html/alloc/collections/enum.CollectionAllocErr.html +share/doc/rust/html/alloc/collections/index.html +share/doc/rust/html/alloc/collections/linked_list/ +share/doc/rust/html/alloc/collections/linked_list/DrainFilter.t.html +share/doc/rust/html/alloc/collections/linked_list/IntoIter.t.html +share/doc/rust/html/alloc/collections/linked_list/Iter.t.html +share/doc/rust/html/alloc/collections/linked_list/IterMut.t.html +share/doc/rust/html/alloc/collections/linked_list/LinkedList.t.html +share/doc/rust/html/alloc/collections/linked_list/index.html +share/doc/rust/html/alloc/collections/linked_list/sidebar-items.js +share/doc/rust/html/alloc/collections/linked_list/struct.DrainFilter.html +share/doc/rust/html/alloc/collections/linked_list/struct.IntoIter.html +share/doc/rust/html/alloc/collections/linked_list/struct.Iter.html +share/doc/rust/html/alloc/collections/linked_list/struct.IterMut.html +share/doc/rust/html/alloc/collections/linked_list/struct.LinkedList.html +share/doc/rust/html/alloc/collections/sidebar-items.js +share/doc/rust/html/alloc/collections/vec_deque/ +share/doc/rust/html/alloc/collections/vec_deque/Drain.t.html +share/doc/rust/html/alloc/collections/vec_deque/IntoIter.t.html +share/doc/rust/html/alloc/collections/vec_deque/Iter.t.html +share/doc/rust/html/alloc/collections/vec_deque/IterMut.t.html +share/doc/rust/html/alloc/collections/vec_deque/VecDeque.t.html +share/doc/rust/html/alloc/collections/vec_deque/index.html +share/doc/rust/html/alloc/collections/vec_deque/sidebar-items.js +share/doc/rust/html/alloc/collections/vec_deque/struct.Drain.html +share/doc/rust/html/alloc/collections/vec_deque/struct.IntoIter.html +share/doc/rust/html/alloc/collections/vec_deque/struct.Iter.html +share/doc/rust/html/alloc/collections/vec_deque/struct.IterMut.html +share/doc/rust/html/alloc/collections/vec_deque/struct.VecDeque.html share/doc/rust/html/alloc/fmt/ share/doc/rust/html/alloc/fmt/Alignment.t.html share/doc/rust/html/alloc/fmt/Arguments.t.html @@ -235,28 +254,13 @@ share/doc/rust/html/alloc/fmt/type.Result.html share/doc/rust/html/alloc/fmt/write.v.html share/doc/rust/html/alloc/format.m.html share/doc/rust/html/alloc/index.html -share/doc/rust/html/alloc/linked_list/ -share/doc/rust/html/alloc/linked_list/DrainFilter.t.html -share/doc/rust/html/alloc/linked_list/IntoIter.t.html -share/doc/rust/html/alloc/linked_list/Iter.t.html -share/doc/rust/html/alloc/linked_list/IterMut.t.html -share/doc/rust/html/alloc/linked_list/LinkedList.t.html -share/doc/rust/html/alloc/linked_list/index.html -share/doc/rust/html/alloc/linked_list/sidebar-items.js -share/doc/rust/html/alloc/linked_list/struct.DrainFilter.html -share/doc/rust/html/alloc/linked_list/struct.IntoIter.html -share/doc/rust/html/alloc/linked_list/struct.Iter.html -share/doc/rust/html/alloc/linked_list/struct.IterMut.html -share/doc/rust/html/alloc/linked_list/struct.LinkedList.html share/doc/rust/html/alloc/macro.format!.html share/doc/rust/html/alloc/macro.format.html share/doc/rust/html/alloc/macro.vec!.html share/doc/rust/html/alloc/macro.vec.html -share/doc/rust/html/alloc/raw_vec/ -share/doc/rust/html/alloc/raw_vec/RawVec.t.html -share/doc/rust/html/alloc/raw_vec/index.html -share/doc/rust/html/alloc/raw_vec/sidebar-items.js -share/doc/rust/html/alloc/raw_vec/struct.RawVec.html +share/doc/rust/html/alloc/prelude/ +share/doc/rust/html/alloc/prelude/index.html +share/doc/rust/html/alloc/prelude/sidebar-items.js share/doc/rust/html/alloc/rc/ share/doc/rust/html/alloc/rc/Rc.t.html share/doc/rust/html/alloc/rc/Weak.t.html @@ -327,6 +331,7 @@ share/doc/rust/html/alloc/str/RSplit.t.html share/doc/rust/html/alloc/str/RSplitN.t.html share/doc/rust/html/alloc/str/RSplitTerminator.t.html share/doc/rust/html/alloc/str/Split.t.html +share/doc/rust/html/alloc/str/SplitAsciiWhitespace.t.html share/doc/rust/html/alloc/str/SplitN.t.html share/doc/rust/html/alloc/str/SplitTerminator.t.html share/doc/rust/html/alloc/str/SplitWhitespace.t.html @@ -379,6 +384,7 @@ share/doc/rust/html/alloc/str/struct.RSplit.html share/doc/rust/html/alloc/str/struct.RSplitN.html share/doc/rust/html/alloc/str/struct.RSplitTerminator.html share/doc/rust/html/alloc/str/struct.Split.html +share/doc/rust/html/alloc/str/struct.SplitAsciiWhitespace.html share/doc/rust/html/alloc/str/struct.SplitN.html share/doc/rust/html/alloc/str/struct.SplitTerminator.html share/doc/rust/html/alloc/str/struct.SplitWhitespace.html @@ -399,15 +405,21 @@ share/doc/rust/html/alloc/string/struct.FromUtf16Error.html share/doc/rust/html/alloc/string/struct.FromUtf8Error.html share/doc/rust/html/alloc/string/struct.String.html share/doc/rust/html/alloc/string/trait.ToString.html +share/doc/rust/html/alloc/sync/ +share/doc/rust/html/alloc/sync/Arc.t.html +share/doc/rust/html/alloc/sync/Weak.t.html +share/doc/rust/html/alloc/sync/index.html +share/doc/rust/html/alloc/sync/sidebar-items.js +share/doc/rust/html/alloc/sync/struct.Arc.html +share/doc/rust/html/alloc/sync/struct.Weak.html share/doc/rust/html/alloc/task/ share/doc/rust/html/alloc/task/Context.t.html share/doc/rust/html/alloc/task/Executor.t.html share/doc/rust/html/alloc/task/LocalWaker.t.html share/doc/rust/html/alloc/task/Poll.t.html share/doc/rust/html/alloc/task/SpawnErrorKind.t.html +share/doc/rust/html/alloc/task/SpawnLocalObjError.t.html share/doc/rust/html/alloc/task/SpawnObjError.t.html -share/doc/rust/html/alloc/task/TaskObj.t.html -share/doc/rust/html/alloc/task/UnsafeTask.t.html share/doc/rust/html/alloc/task/UnsafeWake.t.html share/doc/rust/html/alloc/task/Wake.t.html share/doc/rust/html/alloc/task/Waker.t.html @@ -428,11 +440,10 @@ share/doc/rust/html/alloc/task/sidebar-items.js share/doc/rust/html/alloc/task/struct.Context.html share/doc/rust/html/alloc/task/struct.LocalWaker.html share/doc/rust/html/alloc/task/struct.SpawnErrorKind.html +share/doc/rust/html/alloc/task/struct.SpawnLocalObjError.html share/doc/rust/html/alloc/task/struct.SpawnObjError.html -share/doc/rust/html/alloc/task/struct.TaskObj.html share/doc/rust/html/alloc/task/struct.Waker.html share/doc/rust/html/alloc/task/trait.Executor.html -share/doc/rust/html/alloc/task/trait.UnsafeTask.html share/doc/rust/html/alloc/task/trait.UnsafeWake.html share/doc/rust/html/alloc/task/trait.Wake.html share/doc/rust/html/alloc/vec/ @@ -449,19 +460,6 @@ 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.Splice.html share/doc/rust/html/alloc/vec/struct.Vec.html -share/doc/rust/html/alloc/vec_deque/ -share/doc/rust/html/alloc/vec_deque/Drain.t.html -share/doc/rust/html/alloc/vec_deque/IntoIter.t.html -share/doc/rust/html/alloc/vec_deque/Iter.t.html -share/doc/rust/html/alloc/vec_deque/IterMut.t.html -share/doc/rust/html/alloc/vec_deque/VecDeque.t.html -share/doc/rust/html/alloc/vec_deque/index.html -share/doc/rust/html/alloc/vec_deque/sidebar-items.js -share/doc/rust/html/alloc/vec_deque/struct.Drain.html -share/doc/rust/html/alloc/vec_deque/struct.IntoIter.html -share/doc/rust/html/alloc/vec_deque/struct.Iter.html -share/doc/rust/html/alloc/vec_deque/struct.IterMut.html -share/doc/rust/html/alloc/vec_deque/struct.VecDeque.html share/doc/rust/html/book/ share/doc/rust/html/book/2018-edition/ share/doc/rust/html/book/2018-edition/_FontAwesome/ @@ -481,6 +479,7 @@ share/doc/rust/html/book/2018-edition/appendix-03-derivable-traits.html share/doc/rust/html/book/2018-edition/appendix-04-macros.html share/doc/rust/html/book/2018-edition/appendix-05-translation.html share/doc/rust/html/book/2018-edition/appendix-06-nightly-rust.html +share/doc/rust/html/book/2018-edition/appendix-07-other-useful-tools.html share/doc/rust/html/book/2018-edition/ayu-highlight.css share/doc/rust/html/book/2018-edition/book.css share/doc/rust/html/book/2018-edition/book.js @@ -961,12 +960,10 @@ share/doc/rust/html/core/alloc/ share/doc/rust/html/core/alloc/Alloc.t.html share/doc/rust/html/core/alloc/AllocErr.t.html share/doc/rust/html/core/alloc/CannotReallocInPlace.t.html -share/doc/rust/html/core/alloc/CollectionAllocErr.t.html share/doc/rust/html/core/alloc/Excess.t.html share/doc/rust/html/core/alloc/GlobalAlloc.t.html share/doc/rust/html/core/alloc/Layout.t.html share/doc/rust/html/core/alloc/LayoutErr.t.html -share/doc/rust/html/core/alloc/enum.CollectionAllocErr.html share/doc/rust/html/core/alloc/index.html share/doc/rust/html/core/alloc/sidebar-items.js share/doc/rust/html/core/alloc/struct.AllocErr.html @@ -985,6 +982,33 @@ share/doc/rust/html/core/any/struct.TypeId.html share/doc/rust/html/core/any/trait.Any.html share/doc/rust/html/core/arch/ share/doc/rust/html/core/arch/aarch64/ +share/doc/rust/html/core/arch/aarch64/__DMB.v.html +share/doc/rust/html/core/arch/aarch64/__DSB.v.html +share/doc/rust/html/core/arch/aarch64/__ISB.v.html +share/doc/rust/html/core/arch/aarch64/__NOP.v.html +share/doc/rust/html/core/arch/aarch64/__SEV.v.html +share/doc/rust/html/core/arch/aarch64/__WFE.v.html +share/doc/rust/html/core/arch/aarch64/__WFI.v.html +share/doc/rust/html/core/arch/aarch64/__disable_fault_irq.v.html +share/doc/rust/html/core/arch/aarch64/__disable_irq.v.html +share/doc/rust/html/core/arch/aarch64/__enable_fault_irq.v.html +share/doc/rust/html/core/arch/aarch64/__enable_irq.v.html +share/doc/rust/html/core/arch/aarch64/__get_APSR.v.html +share/doc/rust/html/core/arch/aarch64/__get_BASEPRI.v.html +share/doc/rust/html/core/arch/aarch64/__get_CONTROL.v.html +share/doc/rust/html/core/arch/aarch64/__get_FAULTMASK.v.html +share/doc/rust/html/core/arch/aarch64/__get_IPSR.v.html +share/doc/rust/html/core/arch/aarch64/__get_MSP.v.html +share/doc/rust/html/core/arch/aarch64/__get_PRIMASK.v.html +share/doc/rust/html/core/arch/aarch64/__get_PSP.v.html +share/doc/rust/html/core/arch/aarch64/__get_xPSR.v.html +share/doc/rust/html/core/arch/aarch64/__set_BASEPRI.v.html +share/doc/rust/html/core/arch/aarch64/__set_BASEPRI_MAX.v.html +share/doc/rust/html/core/arch/aarch64/__set_CONTROL.v.html +share/doc/rust/html/core/arch/aarch64/__set_FAULTMASK.v.html +share/doc/rust/html/core/arch/aarch64/__set_MSP.v.html +share/doc/rust/html/core/arch/aarch64/__set_PRIMASK.v.html +share/doc/rust/html/core/arch/aarch64/__set_PSP.v.html share/doc/rust/html/core/arch/aarch64/_cls_u32.v.html share/doc/rust/html/core/arch/aarch64/_cls_u64.v.html share/doc/rust/html/core/arch/aarch64/_clz_u64.v.html @@ -996,6 +1020,33 @@ share/doc/rust/html/core/arch/aarch64/float32x2_t.t.html share/doc/rust/html/core/arch/aarch64/float32x4_t.t.html share/doc/rust/html/core/arch/aarch64/float64x1_t.t.html share/doc/rust/html/core/arch/aarch64/float64x2_t.t.html +share/doc/rust/html/core/arch/aarch64/fn.__DMB.html +share/doc/rust/html/core/arch/aarch64/fn.__DSB.html +share/doc/rust/html/core/arch/aarch64/fn.__ISB.html +share/doc/rust/html/core/arch/aarch64/fn.__NOP.html +share/doc/rust/html/core/arch/aarch64/fn.__SEV.html +share/doc/rust/html/core/arch/aarch64/fn.__WFE.html +share/doc/rust/html/core/arch/aarch64/fn.__WFI.html +share/doc/rust/html/core/arch/aarch64/fn.__disable_fault_irq.html +share/doc/rust/html/core/arch/aarch64/fn.__disable_irq.html +share/doc/rust/html/core/arch/aarch64/fn.__enable_fault_irq.html +share/doc/rust/html/core/arch/aarch64/fn.__enable_irq.html +share/doc/rust/html/core/arch/aarch64/fn.__get_APSR.html +share/doc/rust/html/core/arch/aarch64/fn.__get_BASEPRI.html +share/doc/rust/html/core/arch/aarch64/fn.__get_CONTROL.html +share/doc/rust/html/core/arch/aarch64/fn.__get_FAULTMASK.html +share/doc/rust/html/core/arch/aarch64/fn.__get_IPSR.html +share/doc/rust/html/core/arch/aarch64/fn.__get_MSP.html +share/doc/rust/html/core/arch/aarch64/fn.__get_PRIMASK.html +share/doc/rust/html/core/arch/aarch64/fn.__get_PSP.html +share/doc/rust/html/core/arch/aarch64/fn.__get_xPSR.html +share/doc/rust/html/core/arch/aarch64/fn.__set_BASEPRI.html +share/doc/rust/html/core/arch/aarch64/fn.__set_BASEPRI_MAX.html +share/doc/rust/html/core/arch/aarch64/fn.__set_CONTROL.html +share/doc/rust/html/core/arch/aarch64/fn.__set_FAULTMASK.html +share/doc/rust/html/core/arch/aarch64/fn.__set_MSP.html +share/doc/rust/html/core/arch/aarch64/fn.__set_PRIMASK.html +share/doc/rust/html/core/arch/aarch64/fn.__set_PSP.html share/doc/rust/html/core/arch/aarch64/fn._cls_u32.html share/doc/rust/html/core/arch/aarch64/fn._cls_u64.html share/doc/rust/html/core/arch/aarch64/fn._clz_u64.html @@ -1003,6 +1054,26 @@ share/doc/rust/html/core/arch/aarch64/fn._rbit_u64.html share/doc/rust/html/core/arch/aarch64/fn._rev_u16.html share/doc/rust/html/core/arch/aarch64/fn._rev_u32.html share/doc/rust/html/core/arch/aarch64/fn._rev_u64.html +share/doc/rust/html/core/arch/aarch64/fn.qadd.html +share/doc/rust/html/core/arch/aarch64/fn.qadd16.html +share/doc/rust/html/core/arch/aarch64/fn.qadd8.html +share/doc/rust/html/core/arch/aarch64/fn.qasx.html +share/doc/rust/html/core/arch/aarch64/fn.qsax.html +share/doc/rust/html/core/arch/aarch64/fn.qsub.html +share/doc/rust/html/core/arch/aarch64/fn.qsub16.html +share/doc/rust/html/core/arch/aarch64/fn.qsub8.html +share/doc/rust/html/core/arch/aarch64/fn.sadd16.html +share/doc/rust/html/core/arch/aarch64/fn.sadd8.html +share/doc/rust/html/core/arch/aarch64/fn.sasx.html +share/doc/rust/html/core/arch/aarch64/fn.sel.html +share/doc/rust/html/core/arch/aarch64/fn.shadd16.html +share/doc/rust/html/core/arch/aarch64/fn.shadd8.html +share/doc/rust/html/core/arch/aarch64/fn.shsub16.html +share/doc/rust/html/core/arch/aarch64/fn.shsub8.html +share/doc/rust/html/core/arch/aarch64/fn.smuad.html +share/doc/rust/html/core/arch/aarch64/fn.smuadx.html +share/doc/rust/html/core/arch/aarch64/fn.smusd.html +share/doc/rust/html/core/arch/aarch64/fn.smusdx.html share/doc/rust/html/core/arch/aarch64/fn.vadd_f32.html share/doc/rust/html/core/arch/aarch64/fn.vadd_f64.html share/doc/rust/html/core/arch/aarch64/fn.vadd_s16.html @@ -1117,6 +1188,7 @@ share/doc/rust/html/core/arch/aarch64/fn.vsha256hq_u32.html share/doc/rust/html/core/arch/aarch64/fn.vsha256su0q_u32.html share/doc/rust/html/core/arch/aarch64/fn.vsha256su1q_u32.html share/doc/rust/html/core/arch/aarch64/index.html +share/doc/rust/html/core/arch/aarch64/int16x2_t.t.html share/doc/rust/html/core/arch/aarch64/int16x4_t.t.html share/doc/rust/html/core/arch/aarch64/int16x8_t.t.html share/doc/rust/html/core/arch/aarch64/int32x2_t.t.html @@ -1124,16 +1196,38 @@ share/doc/rust/html/core/arch/aarch64/int32x4_t.t.html share/doc/rust/html/core/arch/aarch64/int64x1_t.t.html share/doc/rust/html/core/arch/aarch64/int64x2_t.t.html share/doc/rust/html/core/arch/aarch64/int8x16_t.t.html +share/doc/rust/html/core/arch/aarch64/int8x4_t.t.html share/doc/rust/html/core/arch/aarch64/int8x8_t.t.html share/doc/rust/html/core/arch/aarch64/poly16x4_t.t.html share/doc/rust/html/core/arch/aarch64/poly16x8_t.t.html share/doc/rust/html/core/arch/aarch64/poly8x16_t.t.html share/doc/rust/html/core/arch/aarch64/poly8x8_t.t.html +share/doc/rust/html/core/arch/aarch64/qadd.v.html +share/doc/rust/html/core/arch/aarch64/qadd16.v.html +share/doc/rust/html/core/arch/aarch64/qadd8.v.html +share/doc/rust/html/core/arch/aarch64/qasx.v.html +share/doc/rust/html/core/arch/aarch64/qsax.v.html +share/doc/rust/html/core/arch/aarch64/qsub.v.html +share/doc/rust/html/core/arch/aarch64/qsub16.v.html +share/doc/rust/html/core/arch/aarch64/qsub8.v.html +share/doc/rust/html/core/arch/aarch64/sadd16.v.html +share/doc/rust/html/core/arch/aarch64/sadd8.v.html +share/doc/rust/html/core/arch/aarch64/sasx.v.html +share/doc/rust/html/core/arch/aarch64/sel.v.html +share/doc/rust/html/core/arch/aarch64/shadd16.v.html +share/doc/rust/html/core/arch/aarch64/shadd8.v.html +share/doc/rust/html/core/arch/aarch64/shsub16.v.html +share/doc/rust/html/core/arch/aarch64/shsub8.v.html share/doc/rust/html/core/arch/aarch64/sidebar-items.js +share/doc/rust/html/core/arch/aarch64/smuad.v.html +share/doc/rust/html/core/arch/aarch64/smuadx.v.html +share/doc/rust/html/core/arch/aarch64/smusd.v.html +share/doc/rust/html/core/arch/aarch64/smusdx.v.html share/doc/rust/html/core/arch/aarch64/struct.float32x2_t.html share/doc/rust/html/core/arch/aarch64/struct.float32x4_t.html share/doc/rust/html/core/arch/aarch64/struct.float64x1_t.html share/doc/rust/html/core/arch/aarch64/struct.float64x2_t.html +share/doc/rust/html/core/arch/aarch64/struct.int16x2_t.html share/doc/rust/html/core/arch/aarch64/struct.int16x4_t.html share/doc/rust/html/core/arch/aarch64/struct.int16x8_t.html share/doc/rust/html/core/arch/aarch64/struct.int32x2_t.html @@ -1141,11 +1235,13 @@ share/doc/rust/html/core/arch/aarch64/struct.int32x4_t.html share/doc/rust/html/core/arch/aarch64/struct.int64x1_t.html share/doc/rust/html/core/arch/aarch64/struct.int64x2_t.html share/doc/rust/html/core/arch/aarch64/struct.int8x16_t.html +share/doc/rust/html/core/arch/aarch64/struct.int8x4_t.html share/doc/rust/html/core/arch/aarch64/struct.int8x8_t.html share/doc/rust/html/core/arch/aarch64/struct.poly16x4_t.html share/doc/rust/html/core/arch/aarch64/struct.poly16x8_t.html share/doc/rust/html/core/arch/aarch64/struct.poly8x16_t.html share/doc/rust/html/core/arch/aarch64/struct.poly8x8_t.html +share/doc/rust/html/core/arch/aarch64/struct.uint16x2_t.html share/doc/rust/html/core/arch/aarch64/struct.uint16x4_t.html share/doc/rust/html/core/arch/aarch64/struct.uint16x8_t.html share/doc/rust/html/core/arch/aarch64/struct.uint32x2_t.html @@ -1153,7 +1249,9 @@ share/doc/rust/html/core/arch/aarch64/struct.uint32x4_t.html share/doc/rust/html/core/arch/aarch64/struct.uint64x1_t.html share/doc/rust/html/core/arch/aarch64/struct.uint64x2_t.html share/doc/rust/html/core/arch/aarch64/struct.uint8x16_t.html +share/doc/rust/html/core/arch/aarch64/struct.uint8x4_t.html share/doc/rust/html/core/arch/aarch64/struct.uint8x8_t.html +share/doc/rust/html/core/arch/aarch64/uint16x2_t.t.html share/doc/rust/html/core/arch/aarch64/uint16x4_t.t.html share/doc/rust/html/core/arch/aarch64/uint16x8_t.t.html share/doc/rust/html/core/arch/aarch64/uint32x2_t.t.html @@ -1161,6 +1259,7 @@ share/doc/rust/html/core/arch/aarch64/uint32x4_t.t.html share/doc/rust/html/core/arch/aarch64/uint64x1_t.t.html share/doc/rust/html/core/arch/aarch64/uint64x2_t.t.html share/doc/rust/html/core/arch/aarch64/uint8x16_t.t.html +share/doc/rust/html/core/arch/aarch64/uint8x4_t.t.html share/doc/rust/html/core/arch/aarch64/uint8x8_t.t.html share/doc/rust/html/core/arch/aarch64/vadd_f32.v.html share/doc/rust/html/core/arch/aarch64/vadd_f64.v.html @@ -1276,12 +1375,86 @@ share/doc/rust/html/core/arch/aarch64/vsha256hq_u32.v.html share/doc/rust/html/core/arch/aarch64/vsha256su0q_u32.v.html share/doc/rust/html/core/arch/aarch64/vsha256su1q_u32.v.html share/doc/rust/html/core/arch/arm/ +share/doc/rust/html/core/arch/arm/__DMB.v.html +share/doc/rust/html/core/arch/arm/__DSB.v.html +share/doc/rust/html/core/arch/arm/__ISB.v.html +share/doc/rust/html/core/arch/arm/__NOP.v.html +share/doc/rust/html/core/arch/arm/__SEV.v.html +share/doc/rust/html/core/arch/arm/__WFE.v.html +share/doc/rust/html/core/arch/arm/__WFI.v.html +share/doc/rust/html/core/arch/arm/__disable_fault_irq.v.html +share/doc/rust/html/core/arch/arm/__disable_irq.v.html +share/doc/rust/html/core/arch/arm/__enable_fault_irq.v.html +share/doc/rust/html/core/arch/arm/__enable_irq.v.html +share/doc/rust/html/core/arch/arm/__get_APSR.v.html +share/doc/rust/html/core/arch/arm/__get_BASEPRI.v.html +share/doc/rust/html/core/arch/arm/__get_CONTROL.v.html +share/doc/rust/html/core/arch/arm/__get_FAULTMASK.v.html +share/doc/rust/html/core/arch/arm/__get_IPSR.v.html +share/doc/rust/html/core/arch/arm/__get_MSP.v.html +share/doc/rust/html/core/arch/arm/__get_PRIMASK.v.html +share/doc/rust/html/core/arch/arm/__get_PSP.v.html +share/doc/rust/html/core/arch/arm/__get_xPSR.v.html +share/doc/rust/html/core/arch/arm/__set_BASEPRI.v.html +share/doc/rust/html/core/arch/arm/__set_BASEPRI_MAX.v.html +share/doc/rust/html/core/arch/arm/__set_CONTROL.v.html +share/doc/rust/html/core/arch/arm/__set_FAULTMASK.v.html +share/doc/rust/html/core/arch/arm/__set_MSP.v.html +share/doc/rust/html/core/arch/arm/__set_PRIMASK.v.html +share/doc/rust/html/core/arch/arm/__set_PSP.v.html share/doc/rust/html/core/arch/arm/_rev_u16.v.html share/doc/rust/html/core/arch/arm/_rev_u32.v.html share/doc/rust/html/core/arch/arm/float32x2_t.t.html share/doc/rust/html/core/arch/arm/float32x4_t.t.html +share/doc/rust/html/core/arch/arm/fn.__DMB.html +share/doc/rust/html/core/arch/arm/fn.__DSB.html +share/doc/rust/html/core/arch/arm/fn.__ISB.html +share/doc/rust/html/core/arch/arm/fn.__NOP.html +share/doc/rust/html/core/arch/arm/fn.__SEV.html +share/doc/rust/html/core/arch/arm/fn.__WFE.html +share/doc/rust/html/core/arch/arm/fn.__WFI.html +share/doc/rust/html/core/arch/arm/fn.__disable_fault_irq.html +share/doc/rust/html/core/arch/arm/fn.__disable_irq.html +share/doc/rust/html/core/arch/arm/fn.__enable_fault_irq.html +share/doc/rust/html/core/arch/arm/fn.__enable_irq.html +share/doc/rust/html/core/arch/arm/fn.__get_APSR.html +share/doc/rust/html/core/arch/arm/fn.__get_BASEPRI.html +share/doc/rust/html/core/arch/arm/fn.__get_CONTROL.html +share/doc/rust/html/core/arch/arm/fn.__get_FAULTMASK.html +share/doc/rust/html/core/arch/arm/fn.__get_IPSR.html +share/doc/rust/html/core/arch/arm/fn.__get_MSP.html +share/doc/rust/html/core/arch/arm/fn.__get_PRIMASK.html +share/doc/rust/html/core/arch/arm/fn.__get_PSP.html +share/doc/rust/html/core/arch/arm/fn.__get_xPSR.html +share/doc/rust/html/core/arch/arm/fn.__set_BASEPRI.html +share/doc/rust/html/core/arch/arm/fn.__set_BASEPRI_MAX.html +share/doc/rust/html/core/arch/arm/fn.__set_CONTROL.html +share/doc/rust/html/core/arch/arm/fn.__set_FAULTMASK.html +share/doc/rust/html/core/arch/arm/fn.__set_MSP.html +share/doc/rust/html/core/arch/arm/fn.__set_PRIMASK.html +share/doc/rust/html/core/arch/arm/fn.__set_PSP.html share/doc/rust/html/core/arch/arm/fn._rev_u16.html share/doc/rust/html/core/arch/arm/fn._rev_u32.html +share/doc/rust/html/core/arch/arm/fn.qadd.html +share/doc/rust/html/core/arch/arm/fn.qadd16.html +share/doc/rust/html/core/arch/arm/fn.qadd8.html +share/doc/rust/html/core/arch/arm/fn.qasx.html +share/doc/rust/html/core/arch/arm/fn.qsax.html +share/doc/rust/html/core/arch/arm/fn.qsub.html +share/doc/rust/html/core/arch/arm/fn.qsub16.html +share/doc/rust/html/core/arch/arm/fn.qsub8.html +share/doc/rust/html/core/arch/arm/fn.sadd16.html +share/doc/rust/html/core/arch/arm/fn.sadd8.html +share/doc/rust/html/core/arch/arm/fn.sasx.html +share/doc/rust/html/core/arch/arm/fn.sel.html +share/doc/rust/html/core/arch/arm/fn.shadd16.html +share/doc/rust/html/core/arch/arm/fn.shadd8.html +share/doc/rust/html/core/arch/arm/fn.shsub16.html +share/doc/rust/html/core/arch/arm/fn.shsub8.html +share/doc/rust/html/core/arch/arm/fn.smuad.html +share/doc/rust/html/core/arch/arm/fn.smuadx.html +share/doc/rust/html/core/arch/arm/fn.smusd.html +share/doc/rust/html/core/arch/arm/fn.smusdx.html share/doc/rust/html/core/arch/arm/fn.vadd_f32.html share/doc/rust/html/core/arch/arm/fn.vadd_s16.html share/doc/rust/html/core/arch/arm/fn.vadd_s32.html @@ -1332,6 +1505,7 @@ share/doc/rust/html/core/arch/arm/fn.vpmin_u32.html share/doc/rust/html/core/arch/arm/fn.vpmin_u8.html share/doc/rust/html/core/arch/arm/fn.vrsqrte_f32.html share/doc/rust/html/core/arch/arm/index.html +share/doc/rust/html/core/arch/arm/int16x2_t.t.html share/doc/rust/html/core/arch/arm/int16x4_t.t.html share/doc/rust/html/core/arch/arm/int16x8_t.t.html share/doc/rust/html/core/arch/arm/int32x2_t.t.html @@ -1339,14 +1513,36 @@ share/doc/rust/html/core/arch/arm/int32x4_t.t.html share/doc/rust/html/core/arch/arm/int64x1_t.t.html share/doc/rust/html/core/arch/arm/int64x2_t.t.html share/doc/rust/html/core/arch/arm/int8x16_t.t.html +share/doc/rust/html/core/arch/arm/int8x4_t.t.html share/doc/rust/html/core/arch/arm/int8x8_t.t.html share/doc/rust/html/core/arch/arm/poly16x4_t.t.html share/doc/rust/html/core/arch/arm/poly16x8_t.t.html share/doc/rust/html/core/arch/arm/poly8x16_t.t.html share/doc/rust/html/core/arch/arm/poly8x8_t.t.html +share/doc/rust/html/core/arch/arm/qadd.v.html +share/doc/rust/html/core/arch/arm/qadd16.v.html +share/doc/rust/html/core/arch/arm/qadd8.v.html +share/doc/rust/html/core/arch/arm/qasx.v.html +share/doc/rust/html/core/arch/arm/qsax.v.html +share/doc/rust/html/core/arch/arm/qsub.v.html +share/doc/rust/html/core/arch/arm/qsub16.v.html +share/doc/rust/html/core/arch/arm/qsub8.v.html +share/doc/rust/html/core/arch/arm/sadd16.v.html +share/doc/rust/html/core/arch/arm/sadd8.v.html +share/doc/rust/html/core/arch/arm/sasx.v.html +share/doc/rust/html/core/arch/arm/sel.v.html +share/doc/rust/html/core/arch/arm/shadd16.v.html +share/doc/rust/html/core/arch/arm/shadd8.v.html +share/doc/rust/html/core/arch/arm/shsub16.v.html +share/doc/rust/html/core/arch/arm/shsub8.v.html share/doc/rust/html/core/arch/arm/sidebar-items.js +share/doc/rust/html/core/arch/arm/smuad.v.html +share/doc/rust/html/core/arch/arm/smuadx.v.html +share/doc/rust/html/core/arch/arm/smusd.v.html +share/doc/rust/html/core/arch/arm/smusdx.v.html share/doc/rust/html/core/arch/arm/struct.float32x2_t.html share/doc/rust/html/core/arch/arm/struct.float32x4_t.html +share/doc/rust/html/core/arch/arm/struct.int16x2_t.html share/doc/rust/html/core/arch/arm/struct.int16x4_t.html share/doc/rust/html/core/arch/arm/struct.int16x8_t.html share/doc/rust/html/core/arch/arm/struct.int32x2_t.html @@ -1354,11 +1550,13 @@ share/doc/rust/html/core/arch/arm/struct.int32x4_t.html share/doc/rust/html/core/arch/arm/struct.int64x1_t.html share/doc/rust/html/core/arch/arm/struct.int64x2_t.html share/doc/rust/html/core/arch/arm/struct.int8x16_t.html +share/doc/rust/html/core/arch/arm/struct.int8x4_t.html share/doc/rust/html/core/arch/arm/struct.int8x8_t.html share/doc/rust/html/core/arch/arm/struct.poly16x4_t.html share/doc/rust/html/core/arch/arm/struct.poly16x8_t.html share/doc/rust/html/core/arch/arm/struct.poly8x16_t.html share/doc/rust/html/core/arch/arm/struct.poly8x8_t.html +share/doc/rust/html/core/arch/arm/struct.uint16x2_t.html share/doc/rust/html/core/arch/arm/struct.uint16x4_t.html share/doc/rust/html/core/arch/arm/struct.uint16x8_t.html share/doc/rust/html/core/arch/arm/struct.uint32x2_t.html @@ -1366,7 +1564,9 @@ share/doc/rust/html/core/arch/arm/struct.uint32x4_t.html share/doc/rust/html/core/arch/arm/struct.uint64x1_t.html share/doc/rust/html/core/arch/arm/struct.uint64x2_t.html share/doc/rust/html/core/arch/arm/struct.uint8x16_t.html +share/doc/rust/html/core/arch/arm/struct.uint8x4_t.html share/doc/rust/html/core/arch/arm/struct.uint8x8_t.html +share/doc/rust/html/core/arch/arm/uint16x2_t.t.html share/doc/rust/html/core/arch/arm/uint16x4_t.t.html share/doc/rust/html/core/arch/arm/uint16x8_t.t.html share/doc/rust/html/core/arch/arm/uint32x2_t.t.html @@ -1374,6 +1574,7 @@ share/doc/rust/html/core/arch/arm/uint32x4_t.t.html share/doc/rust/html/core/arch/arm/uint64x1_t.t.html share/doc/rust/html/core/arch/arm/uint64x2_t.t.html share/doc/rust/html/core/arch/arm/uint8x16_t.t.html +share/doc/rust/html/core/arch/arm/uint8x4_t.t.html share/doc/rust/html/core/arch/arm/uint8x8_t.t.html share/doc/rust/html/core/arch/arm/vadd_f32.v.html share/doc/rust/html/core/arch/arm/vadd_s16.v.html @@ -1428,13 +1629,33 @@ share/doc/rust/html/core/arch/index.html share/doc/rust/html/core/arch/mips/ share/doc/rust/html/core/arch/mips/__msa_add_a_b.v.html share/doc/rust/html/core/arch/mips/fn.__msa_add_a_b.html +share/doc/rust/html/core/arch/mips/i8x16.t.html share/doc/rust/html/core/arch/mips/index.html share/doc/rust/html/core/arch/mips/sidebar-items.js +share/doc/rust/html/core/arch/mips/struct.i8x16.html share/doc/rust/html/core/arch/mips64/ share/doc/rust/html/core/arch/mips64/__msa_add_a_b.v.html share/doc/rust/html/core/arch/mips64/fn.__msa_add_a_b.html +share/doc/rust/html/core/arch/mips64/i8x16.t.html share/doc/rust/html/core/arch/mips64/index.html share/doc/rust/html/core/arch/mips64/sidebar-items.js +share/doc/rust/html/core/arch/mips64/struct.i8x16.html +share/doc/rust/html/core/arch/powerpc/ +share/doc/rust/html/core/arch/powerpc/index.html +share/doc/rust/html/core/arch/powerpc/sidebar-items.js +share/doc/rust/html/core/arch/powerpc64/ +share/doc/rust/html/core/arch/powerpc64/fn.vec_xxpermdi.html +share/doc/rust/html/core/arch/powerpc64/index.html +share/doc/rust/html/core/arch/powerpc64/sidebar-items.js +share/doc/rust/html/core/arch/powerpc64/struct.vector_bool_long.html +share/doc/rust/html/core/arch/powerpc64/struct.vector_double.html +share/doc/rust/html/core/arch/powerpc64/struct.vector_signed_long.html +share/doc/rust/html/core/arch/powerpc64/struct.vector_unsigned_long.html +share/doc/rust/html/core/arch/powerpc64/vec_xxpermdi.v.html +share/doc/rust/html/core/arch/powerpc64/vector_bool_long.t.html +share/doc/rust/html/core/arch/powerpc64/vector_double.t.html +share/doc/rust/html/core/arch/powerpc64/vector_signed_long.t.html +share/doc/rust/html/core/arch/powerpc64/vector_unsigned_long.t.html share/doc/rust/html/core/arch/sidebar-items.js share/doc/rust/html/core/arch/x86/ share/doc/rust/html/core/arch/x86/CpuidResult.t.html @@ -1517,6 +1738,7 @@ share/doc/rust/html/core/arch/x86/_MM_SET_EXCEPTION_MASK.v.html share/doc/rust/html/core/arch/x86/_MM_SET_EXCEPTION_STATE.v.html share/doc/rust/html/core/arch/x86/_MM_SET_FLUSH_ZERO_MODE.v.html share/doc/rust/html/core/arch/x86/_MM_SET_ROUNDING_MODE.v.html +share/doc/rust/html/core/arch/x86/_MM_SHUFFLE.v.html share/doc/rust/html/core/arch/x86/_MM_TRANSPOSE4_PS.v.html share/doc/rust/html/core/arch/x86/_SIDD_BIT_MASK.v.html share/doc/rust/html/core/arch/x86/_SIDD_CMP_EQUAL_ANY.v.html @@ -2315,6 +2537,7 @@ share/doc/rust/html/core/arch/x86/_mm_mulhrs_epi16.v.html share/doc/rust/html/core/arch/x86/_mm_mulhrs_pi16.v.html share/doc/rust/html/core/arch/x86/_mm_mullo_epi16.v.html share/doc/rust/html/core/arch/x86/_mm_mullo_epi32.v.html +share/doc/rust/html/core/arch/x86/_mm_mullo_pi16.v.html share/doc/rust/html/core/arch/x86/_mm_or_pd.v.html share/doc/rust/html/core/arch/x86/_mm_or_ps.v.html share/doc/rust/html/core/arch/x86/_mm_or_si128.v.html @@ -2638,6 +2861,7 @@ share/doc/rust/html/core/arch/x86/fn._MM_SET_EXCEPTION_MASK.html share/doc/rust/html/core/arch/x86/fn._MM_SET_EXCEPTION_STATE.html share/doc/rust/html/core/arch/x86/fn._MM_SET_FLUSH_ZERO_MODE.html share/doc/rust/html/core/arch/x86/fn._MM_SET_ROUNDING_MODE.html +share/doc/rust/html/core/arch/x86/fn._MM_SHUFFLE.html share/doc/rust/html/core/arch/x86/fn._MM_TRANSPOSE4_PS.html share/doc/rust/html/core/arch/x86/fn.__cpuid.html share/doc/rust/html/core/arch/x86/fn.__cpuid_count.html @@ -3412,6 +3636,7 @@ share/doc/rust/html/core/arch/x86/fn._mm_mulhrs_epi16.html share/doc/rust/html/core/arch/x86/fn._mm_mulhrs_pi16.html share/doc/rust/html/core/arch/x86/fn._mm_mullo_epi16.html share/doc/rust/html/core/arch/x86/fn._mm_mullo_epi32.html +share/doc/rust/html/core/arch/x86/fn._mm_mullo_pi16.html share/doc/rust/html/core/arch/x86/fn._mm_or_pd.html share/doc/rust/html/core/arch/x86/fn._mm_or_ps.html share/doc/rust/html/core/arch/x86/fn._mm_or_si128.html @@ -3732,6 +3957,7 @@ share/doc/rust/html/core/arch/x86_64/_MM_SET_EXCEPTION_MASK.v.html share/doc/rust/html/core/arch/x86_64/_MM_SET_EXCEPTION_STATE.v.html share/doc/rust/html/core/arch/x86_64/_MM_SET_FLUSH_ZERO_MODE.v.html share/doc/rust/html/core/arch/x86_64/_MM_SET_ROUNDING_MODE.v.html +share/doc/rust/html/core/arch/x86_64/_MM_SHUFFLE.v.html share/doc/rust/html/core/arch/x86_64/_MM_TRANSPOSE4_PS.v.html share/doc/rust/html/core/arch/x86_64/_SIDD_BIT_MASK.v.html share/doc/rust/html/core/arch/x86_64/_SIDD_CMP_EQUAL_ANY.v.html @@ -4553,6 +4779,7 @@ share/doc/rust/html/core/arch/x86_64/_mm_mulhrs_epi16.v.html share/doc/rust/html/core/arch/x86_64/_mm_mulhrs_pi16.v.html share/doc/rust/html/core/arch/x86_64/_mm_mullo_epi16.v.html share/doc/rust/html/core/arch/x86_64/_mm_mullo_epi32.v.html +share/doc/rust/html/core/arch/x86_64/_mm_mullo_pi16.v.html share/doc/rust/html/core/arch/x86_64/_mm_or_pd.v.html share/doc/rust/html/core/arch/x86_64/_mm_or_ps.v.html share/doc/rust/html/core/arch/x86_64/_mm_or_si128.v.html @@ -4888,6 +5115,7 @@ share/doc/rust/html/core/arch/x86_64/fn._MM_SET_EXCEPTION_MASK.html share/doc/rust/html/core/arch/x86_64/fn._MM_SET_EXCEPTION_STATE.html share/doc/rust/html/core/arch/x86_64/fn._MM_SET_FLUSH_ZERO_MODE.html share/doc/rust/html/core/arch/x86_64/fn._MM_SET_ROUNDING_MODE.html +share/doc/rust/html/core/arch/x86_64/fn._MM_SHUFFLE.html share/doc/rust/html/core/arch/x86_64/fn._MM_TRANSPOSE4_PS.html share/doc/rust/html/core/arch/x86_64/fn.__cpuid.html share/doc/rust/html/core/arch/x86_64/fn.__cpuid_count.html @@ -5685,6 +5913,7 @@ share/doc/rust/html/core/arch/x86_64/fn._mm_mulhrs_epi16.html share/doc/rust/html/core/arch/x86_64/fn._mm_mulhrs_pi16.html share/doc/rust/html/core/arch/x86_64/fn._mm_mullo_epi16.html share/doc/rust/html/core/arch/x86_64/fn._mm_mullo_epi32.html +share/doc/rust/html/core/arch/x86_64/fn._mm_mullo_pi16.html share/doc/rust/html/core/arch/x86_64/fn._mm_or_pd.html share/doc/rust/html/core/arch/x86_64/fn._mm_or_ps.html share/doc/rust/html/core/arch/x86_64/fn._mm_or_si128.html @@ -6245,11 +6474,120 @@ share/doc/rust/html/core/coresimd/arch/mips/ share/doc/rust/html/core/coresimd/arch/mips/index.html share/doc/rust/html/core/coresimd/arch/mips64/ share/doc/rust/html/core/coresimd/arch/mips64/index.html +share/doc/rust/html/core/coresimd/arch/powerpc/ +share/doc/rust/html/core/coresimd/arch/powerpc/index.html +share/doc/rust/html/core/coresimd/arch/powerpc64/ +share/doc/rust/html/core/coresimd/arch/powerpc64/index.html share/doc/rust/html/core/coresimd/arch/x86/ share/doc/rust/html/core/coresimd/arch/x86/index.html share/doc/rust/html/core/coresimd/arch/x86_64/ share/doc/rust/html/core/coresimd/arch/x86_64/index.html share/doc/rust/html/core/coresimd/arm/ +share/doc/rust/html/core/coresimd/arm/cmsis/ +share/doc/rust/html/core/coresimd/arm/cmsis/__DMB.v.html +share/doc/rust/html/core/coresimd/arm/cmsis/__DSB.v.html +share/doc/rust/html/core/coresimd/arm/cmsis/__ISB.v.html +share/doc/rust/html/core/coresimd/arm/cmsis/__NOP.v.html +share/doc/rust/html/core/coresimd/arm/cmsis/__SEV.v.html +share/doc/rust/html/core/coresimd/arm/cmsis/__WFE.v.html +share/doc/rust/html/core/coresimd/arm/cmsis/__WFI.v.html +share/doc/rust/html/core/coresimd/arm/cmsis/__disable_irq.v.html +share/doc/rust/html/core/coresimd/arm/cmsis/__enable_irq.v.html +share/doc/rust/html/core/coresimd/arm/cmsis/__get_APSR.v.html +share/doc/rust/html/core/coresimd/arm/cmsis/__get_CONTROL.v.html +share/doc/rust/html/core/coresimd/arm/cmsis/__get_IPSR.v.html +share/doc/rust/html/core/coresimd/arm/cmsis/__get_MSP.v.html +share/doc/rust/html/core/coresimd/arm/cmsis/__get_PRIMASK.v.html +share/doc/rust/html/core/coresimd/arm/cmsis/__get_PSP.v.html +share/doc/rust/html/core/coresimd/arm/cmsis/__get_xPSR.v.html +share/doc/rust/html/core/coresimd/arm/cmsis/__set_CONTROL.v.html +share/doc/rust/html/core/coresimd/arm/cmsis/__set_MSP.v.html +share/doc/rust/html/core/coresimd/arm/cmsis/__set_PRIMASK.v.html +share/doc/rust/html/core/coresimd/arm/cmsis/__set_PSP.v.html +share/doc/rust/html/core/coresimd/arm/cmsis/fn.__DMB.html +share/doc/rust/html/core/coresimd/arm/cmsis/fn.__DSB.html +share/doc/rust/html/core/coresimd/arm/cmsis/fn.__ISB.html +share/doc/rust/html/core/coresimd/arm/cmsis/fn.__NOP.html +share/doc/rust/html/core/coresimd/arm/cmsis/fn.__SEV.html +share/doc/rust/html/core/coresimd/arm/cmsis/fn.__WFE.html +share/doc/rust/html/core/coresimd/arm/cmsis/fn.__WFI.html +share/doc/rust/html/core/coresimd/arm/cmsis/fn.__disable_irq.html +share/doc/rust/html/core/coresimd/arm/cmsis/fn.__enable_irq.html +share/doc/rust/html/core/coresimd/arm/cmsis/fn.__get_APSR.html +share/doc/rust/html/core/coresimd/arm/cmsis/fn.__get_CONTROL.html +share/doc/rust/html/core/coresimd/arm/cmsis/fn.__get_IPSR.html +share/doc/rust/html/core/coresimd/arm/cmsis/fn.__get_MSP.html +share/doc/rust/html/core/coresimd/arm/cmsis/fn.__get_PRIMASK.html +share/doc/rust/html/core/coresimd/arm/cmsis/fn.__get_PSP.html +share/doc/rust/html/core/coresimd/arm/cmsis/fn.__get_xPSR.html +share/doc/rust/html/core/coresimd/arm/cmsis/fn.__set_CONTROL.html +share/doc/rust/html/core/coresimd/arm/cmsis/fn.__set_MSP.html +share/doc/rust/html/core/coresimd/arm/cmsis/fn.__set_PRIMASK.html +share/doc/rust/html/core/coresimd/arm/cmsis/fn.__set_PSP.html +share/doc/rust/html/core/coresimd/arm/cmsis/v7/ +share/doc/rust/html/core/coresimd/arm/cmsis/v7/__disable_fault_irq.v.html +share/doc/rust/html/core/coresimd/arm/cmsis/v7/__enable_fault_irq.v.html +share/doc/rust/html/core/coresimd/arm/cmsis/v7/__get_BASEPRI.v.html +share/doc/rust/html/core/coresimd/arm/cmsis/v7/__get_FAULTMASK.v.html +share/doc/rust/html/core/coresimd/arm/cmsis/v7/__set_BASEPRI.v.html +share/doc/rust/html/core/coresimd/arm/cmsis/v7/__set_BASEPRI_MAX.v.html +share/doc/rust/html/core/coresimd/arm/cmsis/v7/__set_FAULTMASK.v.html +share/doc/rust/html/core/coresimd/arm/cmsis/v7/fn.__disable_fault_irq.html +share/doc/rust/html/core/coresimd/arm/cmsis/v7/fn.__enable_fault_irq.html +share/doc/rust/html/core/coresimd/arm/cmsis/v7/fn.__get_BASEPRI.html +share/doc/rust/html/core/coresimd/arm/cmsis/v7/fn.__get_FAULTMASK.html +share/doc/rust/html/core/coresimd/arm/cmsis/v7/fn.__set_BASEPRI.html +share/doc/rust/html/core/coresimd/arm/cmsis/v7/fn.__set_BASEPRI_MAX.html +share/doc/rust/html/core/coresimd/arm/cmsis/v7/fn.__set_FAULTMASK.html +share/doc/rust/html/core/coresimd/arm/dsp/ +share/doc/rust/html/core/coresimd/arm/dsp/fn.qadd.html +share/doc/rust/html/core/coresimd/arm/dsp/fn.qadd16.html +share/doc/rust/html/core/coresimd/arm/dsp/fn.qadd8.html +share/doc/rust/html/core/coresimd/arm/dsp/fn.qasx.html +share/doc/rust/html/core/coresimd/arm/dsp/fn.qsax.html +share/doc/rust/html/core/coresimd/arm/dsp/fn.qsub.html +share/doc/rust/html/core/coresimd/arm/dsp/fn.qsub16.html +share/doc/rust/html/core/coresimd/arm/dsp/fn.qsub8.html +share/doc/rust/html/core/coresimd/arm/dsp/fn.sadd16.html +share/doc/rust/html/core/coresimd/arm/dsp/fn.sadd8.html +share/doc/rust/html/core/coresimd/arm/dsp/fn.sasx.html +share/doc/rust/html/core/coresimd/arm/dsp/fn.sel.html +share/doc/rust/html/core/coresimd/arm/dsp/fn.shadd16.html +share/doc/rust/html/core/coresimd/arm/dsp/fn.shadd8.html +share/doc/rust/html/core/coresimd/arm/dsp/fn.shsub16.html +share/doc/rust/html/core/coresimd/arm/dsp/fn.shsub8.html +share/doc/rust/html/core/coresimd/arm/dsp/fn.smuad.html +share/doc/rust/html/core/coresimd/arm/dsp/fn.smuadx.html +share/doc/rust/html/core/coresimd/arm/dsp/fn.smusd.html +share/doc/rust/html/core/coresimd/arm/dsp/fn.smusdx.html +share/doc/rust/html/core/coresimd/arm/dsp/int16x2_t.t.html +share/doc/rust/html/core/coresimd/arm/dsp/int8x4_t.t.html +share/doc/rust/html/core/coresimd/arm/dsp/qadd.v.html +share/doc/rust/html/core/coresimd/arm/dsp/qadd16.v.html +share/doc/rust/html/core/coresimd/arm/dsp/qadd8.v.html +share/doc/rust/html/core/coresimd/arm/dsp/qasx.v.html +share/doc/rust/html/core/coresimd/arm/dsp/qsax.v.html +share/doc/rust/html/core/coresimd/arm/dsp/qsub.v.html +share/doc/rust/html/core/coresimd/arm/dsp/qsub16.v.html +share/doc/rust/html/core/coresimd/arm/dsp/qsub8.v.html +share/doc/rust/html/core/coresimd/arm/dsp/sadd16.v.html +share/doc/rust/html/core/coresimd/arm/dsp/sadd8.v.html +share/doc/rust/html/core/coresimd/arm/dsp/sasx.v.html +share/doc/rust/html/core/coresimd/arm/dsp/sel.v.html +share/doc/rust/html/core/coresimd/arm/dsp/shadd16.v.html +share/doc/rust/html/core/coresimd/arm/dsp/shadd8.v.html +share/doc/rust/html/core/coresimd/arm/dsp/shsub16.v.html +share/doc/rust/html/core/coresimd/arm/dsp/shsub8.v.html +share/doc/rust/html/core/coresimd/arm/dsp/smuad.v.html +share/doc/rust/html/core/coresimd/arm/dsp/smuadx.v.html +share/doc/rust/html/core/coresimd/arm/dsp/smusd.v.html +share/doc/rust/html/core/coresimd/arm/dsp/smusdx.v.html +share/doc/rust/html/core/coresimd/arm/dsp/struct.int16x2_t.html +share/doc/rust/html/core/coresimd/arm/dsp/struct.int8x4_t.html +share/doc/rust/html/core/coresimd/arm/dsp/struct.uint16x2_t.html +share/doc/rust/html/core/coresimd/arm/dsp/struct.uint8x4_t.html +share/doc/rust/html/core/coresimd/arm/dsp/uint16x2_t.t.html +share/doc/rust/html/core/coresimd/arm/dsp/uint8x4_t.t.html share/doc/rust/html/core/coresimd/arm/neon/ share/doc/rust/html/core/coresimd/arm/neon/float32x2_t.t.html share/doc/rust/html/core/coresimd/arm/neon/float32x4_t.t.html @@ -6402,141 +6740,20 @@ share/doc/rust/html/core/coresimd/mips/ share/doc/rust/html/core/coresimd/mips/msa/ share/doc/rust/html/core/coresimd/mips/msa/__msa_add_a_b.v.html share/doc/rust/html/core/coresimd/mips/msa/fn.__msa_add_a_b.html -share/doc/rust/html/core/coresimd/ppsv/ -share/doc/rust/html/core/coresimd/ppsv/FromBits.t.html -share/doc/rust/html/core/coresimd/ppsv/IntoBits.t.html -share/doc/rust/html/core/coresimd/ppsv/trait.FromBits.html -share/doc/rust/html/core/coresimd/ppsv/trait.IntoBits.html -share/doc/rust/html/core/coresimd/ppsv/v128/ -share/doc/rust/html/core/coresimd/ppsv/v128/f32x4.t.html -share/doc/rust/html/core/coresimd/ppsv/v128/f64x2.t.html -share/doc/rust/html/core/coresimd/ppsv/v128/i16x8.t.html -share/doc/rust/html/core/coresimd/ppsv/v128/i32x4.t.html -share/doc/rust/html/core/coresimd/ppsv/v128/i64x2.t.html -share/doc/rust/html/core/coresimd/ppsv/v128/i8x16.t.html -share/doc/rust/html/core/coresimd/ppsv/v128/m16x8.t.html -share/doc/rust/html/core/coresimd/ppsv/v128/m32x4.t.html -share/doc/rust/html/core/coresimd/ppsv/v128/m64x2.t.html -share/doc/rust/html/core/coresimd/ppsv/v128/m8x16.t.html -share/doc/rust/html/core/coresimd/ppsv/v128/struct.f32x4.html -share/doc/rust/html/core/coresimd/ppsv/v128/struct.f64x2.html -share/doc/rust/html/core/coresimd/ppsv/v128/struct.i16x8.html -share/doc/rust/html/core/coresimd/ppsv/v128/struct.i32x4.html -share/doc/rust/html/core/coresimd/ppsv/v128/struct.i64x2.html -share/doc/rust/html/core/coresimd/ppsv/v128/struct.i8x16.html -share/doc/rust/html/core/coresimd/ppsv/v128/struct.m16x8.html -share/doc/rust/html/core/coresimd/ppsv/v128/struct.m32x4.html -share/doc/rust/html/core/coresimd/ppsv/v128/struct.m64x2.html -share/doc/rust/html/core/coresimd/ppsv/v128/struct.m8x16.html -share/doc/rust/html/core/coresimd/ppsv/v128/struct.u16x8.html -share/doc/rust/html/core/coresimd/ppsv/v128/struct.u32x4.html -share/doc/rust/html/core/coresimd/ppsv/v128/struct.u64x2.html -share/doc/rust/html/core/coresimd/ppsv/v128/struct.u8x16.html -share/doc/rust/html/core/coresimd/ppsv/v128/u16x8.t.html -share/doc/rust/html/core/coresimd/ppsv/v128/u32x4.t.html -share/doc/rust/html/core/coresimd/ppsv/v128/u64x2.t.html -share/doc/rust/html/core/coresimd/ppsv/v128/u8x16.t.html -share/doc/rust/html/core/coresimd/ppsv/v16/ -share/doc/rust/html/core/coresimd/ppsv/v16/i8x2.t.html -share/doc/rust/html/core/coresimd/ppsv/v16/m8x2.t.html -share/doc/rust/html/core/coresimd/ppsv/v16/struct.i8x2.html -share/doc/rust/html/core/coresimd/ppsv/v16/struct.m8x2.html -share/doc/rust/html/core/coresimd/ppsv/v16/struct.u8x2.html -share/doc/rust/html/core/coresimd/ppsv/v16/u8x2.t.html -share/doc/rust/html/core/coresimd/ppsv/v256/ -share/doc/rust/html/core/coresimd/ppsv/v256/f32x8.t.html -share/doc/rust/html/core/coresimd/ppsv/v256/f64x4.t.html -share/doc/rust/html/core/coresimd/ppsv/v256/i16x16.t.html -share/doc/rust/html/core/coresimd/ppsv/v256/i32x8.t.html -share/doc/rust/html/core/coresimd/ppsv/v256/i64x4.t.html -share/doc/rust/html/core/coresimd/ppsv/v256/i8x32.t.html -share/doc/rust/html/core/coresimd/ppsv/v256/m16x16.t.html -share/doc/rust/html/core/coresimd/ppsv/v256/m32x8.t.html -share/doc/rust/html/core/coresimd/ppsv/v256/m64x4.t.html -share/doc/rust/html/core/coresimd/ppsv/v256/m8x32.t.html -share/doc/rust/html/core/coresimd/ppsv/v256/struct.f32x8.html -share/doc/rust/html/core/coresimd/ppsv/v256/struct.f64x4.html -share/doc/rust/html/core/coresimd/ppsv/v256/struct.i16x16.html -share/doc/rust/html/core/coresimd/ppsv/v256/struct.i32x8.html -share/doc/rust/html/core/coresimd/ppsv/v256/struct.i64x4.html -share/doc/rust/html/core/coresimd/ppsv/v256/struct.i8x32.html -share/doc/rust/html/core/coresimd/ppsv/v256/struct.m16x16.html -share/doc/rust/html/core/coresimd/ppsv/v256/struct.m32x8.html -share/doc/rust/html/core/coresimd/ppsv/v256/struct.m64x4.html -share/doc/rust/html/core/coresimd/ppsv/v256/struct.m8x32.html -share/doc/rust/html/core/coresimd/ppsv/v256/struct.u16x16.html -share/doc/rust/html/core/coresimd/ppsv/v256/struct.u32x8.html -share/doc/rust/html/core/coresimd/ppsv/v256/struct.u64x4.html -share/doc/rust/html/core/coresimd/ppsv/v256/struct.u8x32.html -share/doc/rust/html/core/coresimd/ppsv/v256/u16x16.t.html -share/doc/rust/html/core/coresimd/ppsv/v256/u32x8.t.html -share/doc/rust/html/core/coresimd/ppsv/v256/u64x4.t.html -share/doc/rust/html/core/coresimd/ppsv/v256/u8x32.t.html -share/doc/rust/html/core/coresimd/ppsv/v32/ -share/doc/rust/html/core/coresimd/ppsv/v32/i16x2.t.html -share/doc/rust/html/core/coresimd/ppsv/v32/i8x4.t.html -share/doc/rust/html/core/coresimd/ppsv/v32/m16x2.t.html -share/doc/rust/html/core/coresimd/ppsv/v32/m8x4.t.html -share/doc/rust/html/core/coresimd/ppsv/v32/struct.i16x2.html -share/doc/rust/html/core/coresimd/ppsv/v32/struct.i8x4.html -share/doc/rust/html/core/coresimd/ppsv/v32/struct.m16x2.html -share/doc/rust/html/core/coresimd/ppsv/v32/struct.m8x4.html -share/doc/rust/html/core/coresimd/ppsv/v32/struct.u16x2.html -share/doc/rust/html/core/coresimd/ppsv/v32/struct.u8x4.html -share/doc/rust/html/core/coresimd/ppsv/v32/u16x2.t.html -share/doc/rust/html/core/coresimd/ppsv/v32/u8x4.t.html -share/doc/rust/html/core/coresimd/ppsv/v512/ -share/doc/rust/html/core/coresimd/ppsv/v512/f32x16.t.html -share/doc/rust/html/core/coresimd/ppsv/v512/f64x8.t.html -share/doc/rust/html/core/coresimd/ppsv/v512/i16x32.t.html -share/doc/rust/html/core/coresimd/ppsv/v512/i32x16.t.html -share/doc/rust/html/core/coresimd/ppsv/v512/i64x8.t.html -share/doc/rust/html/core/coresimd/ppsv/v512/i8x64.t.html -share/doc/rust/html/core/coresimd/ppsv/v512/m1x16.t.html -share/doc/rust/html/core/coresimd/ppsv/v512/m1x32.t.html -share/doc/rust/html/core/coresimd/ppsv/v512/m1x64.t.html -share/doc/rust/html/core/coresimd/ppsv/v512/m1x8.t.html -share/doc/rust/html/core/coresimd/ppsv/v512/struct.f32x16.html -share/doc/rust/html/core/coresimd/ppsv/v512/struct.f64x8.html -share/doc/rust/html/core/coresimd/ppsv/v512/struct.i16x32.html -share/doc/rust/html/core/coresimd/ppsv/v512/struct.i32x16.html -share/doc/rust/html/core/coresimd/ppsv/v512/struct.i64x8.html -share/doc/rust/html/core/coresimd/ppsv/v512/struct.i8x64.html -share/doc/rust/html/core/coresimd/ppsv/v512/struct.m1x16.html -share/doc/rust/html/core/coresimd/ppsv/v512/struct.m1x32.html -share/doc/rust/html/core/coresimd/ppsv/v512/struct.m1x64.html -share/doc/rust/html/core/coresimd/ppsv/v512/struct.m1x8.html -share/doc/rust/html/core/coresimd/ppsv/v512/struct.u16x32.html -share/doc/rust/html/core/coresimd/ppsv/v512/struct.u32x16.html -share/doc/rust/html/core/coresimd/ppsv/v512/struct.u64x8.html -share/doc/rust/html/core/coresimd/ppsv/v512/struct.u8x64.html -share/doc/rust/html/core/coresimd/ppsv/v512/u16x32.t.html -share/doc/rust/html/core/coresimd/ppsv/v512/u32x16.t.html -share/doc/rust/html/core/coresimd/ppsv/v512/u64x8.t.html -share/doc/rust/html/core/coresimd/ppsv/v512/u8x64.t.html -share/doc/rust/html/core/coresimd/ppsv/v64/ -share/doc/rust/html/core/coresimd/ppsv/v64/f32x2.t.html -share/doc/rust/html/core/coresimd/ppsv/v64/i16x4.t.html -share/doc/rust/html/core/coresimd/ppsv/v64/i32x2.t.html -share/doc/rust/html/core/coresimd/ppsv/v64/i8x8.t.html -share/doc/rust/html/core/coresimd/ppsv/v64/m16x4.t.html -share/doc/rust/html/core/coresimd/ppsv/v64/m32x2.t.html -share/doc/rust/html/core/coresimd/ppsv/v64/m8x8.t.html -share/doc/rust/html/core/coresimd/ppsv/v64/struct.f32x2.html -share/doc/rust/html/core/coresimd/ppsv/v64/struct.i16x4.html -share/doc/rust/html/core/coresimd/ppsv/v64/struct.i32x2.html -share/doc/rust/html/core/coresimd/ppsv/v64/struct.i8x8.html -share/doc/rust/html/core/coresimd/ppsv/v64/struct.m16x4.html -share/doc/rust/html/core/coresimd/ppsv/v64/struct.m32x2.html -share/doc/rust/html/core/coresimd/ppsv/v64/struct.m8x8.html -share/doc/rust/html/core/coresimd/ppsv/v64/struct.u16x4.html -share/doc/rust/html/core/coresimd/ppsv/v64/struct.u32x2.html -share/doc/rust/html/core/coresimd/ppsv/v64/struct.u8x8.html -share/doc/rust/html/core/coresimd/ppsv/v64/u16x4.t.html -share/doc/rust/html/core/coresimd/ppsv/v64/u32x2.t.html -share/doc/rust/html/core/coresimd/ppsv/v64/u8x8.t.html -share/doc/rust/html/core/coresimd/simd/ -share/doc/rust/html/core/coresimd/simd/index.html +share/doc/rust/html/core/coresimd/mips/msa/i8x16.t.html +share/doc/rust/html/core/coresimd/mips/msa/struct.i8x16.html +share/doc/rust/html/core/coresimd/powerpc64/ +share/doc/rust/html/core/coresimd/powerpc64/vsx/ +share/doc/rust/html/core/coresimd/powerpc64/vsx/fn.vec_xxpermdi.html +share/doc/rust/html/core/coresimd/powerpc64/vsx/struct.vector_bool_long.html +share/doc/rust/html/core/coresimd/powerpc64/vsx/struct.vector_double.html +share/doc/rust/html/core/coresimd/powerpc64/vsx/struct.vector_signed_long.html +share/doc/rust/html/core/coresimd/powerpc64/vsx/struct.vector_unsigned_long.html +share/doc/rust/html/core/coresimd/powerpc64/vsx/vec_xxpermdi.v.html +share/doc/rust/html/core/coresimd/powerpc64/vsx/vector_bool_long.t.html +share/doc/rust/html/core/coresimd/powerpc64/vsx/vector_double.t.html +share/doc/rust/html/core/coresimd/powerpc64/vsx/vector_signed_long.t.html +share/doc/rust/html/core/coresimd/powerpc64/vsx/vector_unsigned_long.t.html share/doc/rust/html/core/coresimd/x86/ share/doc/rust/html/core/coresimd/x86/__m128.t.html share/doc/rust/html/core/coresimd/x86/__m128d.t.html @@ -7661,6 +7878,7 @@ share/doc/rust/html/core/coresimd/x86/sse/_MM_SET_EXCEPTION_MASK.v.html share/doc/rust/html/core/coresimd/x86/sse/_MM_SET_EXCEPTION_STATE.v.html share/doc/rust/html/core/coresimd/x86/sse/_MM_SET_FLUSH_ZERO_MODE.v.html share/doc/rust/html/core/coresimd/x86/sse/_MM_SET_ROUNDING_MODE.v.html +share/doc/rust/html/core/coresimd/x86/sse/_MM_SHUFFLE.v.html share/doc/rust/html/core/coresimd/x86/sse/_MM_TRANSPOSE4_PS.v.html share/doc/rust/html/core/coresimd/x86/sse/_m_maskmovq.v.html share/doc/rust/html/core/coresimd/x86/sse/_m_pavgb.v.html @@ -7761,6 +7979,7 @@ share/doc/rust/html/core/coresimd/x86/sse/_mm_movemask_ps.v.html share/doc/rust/html/core/coresimd/x86/sse/_mm_mul_ps.v.html share/doc/rust/html/core/coresimd/x86/sse/_mm_mul_ss.v.html share/doc/rust/html/core/coresimd/x86/sse/_mm_mulhi_pu16.v.html +share/doc/rust/html/core/coresimd/x86/sse/_mm_mullo_pi16.v.html share/doc/rust/html/core/coresimd/x86/sse/_mm_or_ps.v.html share/doc/rust/html/core/coresimd/x86/sse/_mm_prefetch.v.html share/doc/rust/html/core/coresimd/x86/sse/_mm_rcp_ps.v.html @@ -7836,6 +8055,7 @@ share/doc/rust/html/core/coresimd/x86/sse/fn._MM_SET_EXCEPTION_MASK.html share/doc/rust/html/core/coresimd/x86/sse/fn._MM_SET_EXCEPTION_STATE.html share/doc/rust/html/core/coresimd/x86/sse/fn._MM_SET_FLUSH_ZERO_MODE.html share/doc/rust/html/core/coresimd/x86/sse/fn._MM_SET_ROUNDING_MODE.html +share/doc/rust/html/core/coresimd/x86/sse/fn._MM_SHUFFLE.html share/doc/rust/html/core/coresimd/x86/sse/fn._MM_TRANSPOSE4_PS.html share/doc/rust/html/core/coresimd/x86/sse/fn._m_maskmovq.html share/doc/rust/html/core/coresimd/x86/sse/fn._m_pavgb.html @@ -7936,6 +8156,7 @@ share/doc/rust/html/core/coresimd/x86/sse/fn._mm_movemask_ps.html share/doc/rust/html/core/coresimd/x86/sse/fn._mm_mul_ps.html share/doc/rust/html/core/coresimd/x86/sse/fn._mm_mul_ss.html share/doc/rust/html/core/coresimd/x86/sse/fn._mm_mulhi_pu16.html +share/doc/rust/html/core/coresimd/x86/sse/fn._mm_mullo_pi16.html share/doc/rust/html/core/coresimd/x86/sse/fn._mm_or_ps.html share/doc/rust/html/core/coresimd/x86/sse/fn._mm_prefetch.html share/doc/rust/html/core/coresimd/x86/sse/fn._mm_rcp_ps.html @@ -9066,9 +9287,25 @@ share/doc/rust/html/core/fmt/write.v.html share/doc/rust/html/core/format_args.m.html share/doc/rust/html/core/future/ share/doc/rust/html/core/future/Future.t.html +share/doc/rust/html/core/future/FutureObj.t.html +share/doc/rust/html/core/future/LocalFutureObj.t.html +share/doc/rust/html/core/future/UnsafeFutureObj.t.html +share/doc/rust/html/core/future/future/ +share/doc/rust/html/core/future/future/Future.t.html +share/doc/rust/html/core/future/future/trait.Future.html +share/doc/rust/html/core/future/future_obj/ +share/doc/rust/html/core/future/future_obj/FutureObj.t.html +share/doc/rust/html/core/future/future_obj/LocalFutureObj.t.html +share/doc/rust/html/core/future/future_obj/UnsafeFutureObj.t.html +share/doc/rust/html/core/future/future_obj/struct.FutureObj.html +share/doc/rust/html/core/future/future_obj/struct.LocalFutureObj.html +share/doc/rust/html/core/future/future_obj/trait.UnsafeFutureObj.html share/doc/rust/html/core/future/index.html share/doc/rust/html/core/future/sidebar-items.js +share/doc/rust/html/core/future/struct.FutureObj.html +share/doc/rust/html/core/future/struct.LocalFutureObj.html share/doc/rust/html/core/future/trait.Future.html +share/doc/rust/html/core/future/trait.UnsafeFutureObj.html share/doc/rust/html/core/hash/ share/doc/rust/html/core/hash/BuildHasher.t.html share/doc/rust/html/core/hash/BuildHasherDefault.t.html @@ -9427,6 +9664,8 @@ share/doc/rust/html/core/intrinsics/fn.truncf64.html share/doc/rust/html/core/intrinsics/fn.try.html share/doc/rust/html/core/intrinsics/fn.type_id.html share/doc/rust/html/core/intrinsics/fn.type_name.html +share/doc/rust/html/core/intrinsics/fn.unaligned_volatile_load.html +share/doc/rust/html/core/intrinsics/fn.unaligned_volatile_store.html share/doc/rust/html/core/intrinsics/fn.unchecked_div.html share/doc/rust/html/core/intrinsics/fn.unchecked_rem.html share/doc/rust/html/core/intrinsics/fn.unchecked_shl.html @@ -9491,6 +9730,8 @@ share/doc/rust/html/core/intrinsics/truncf64.v.html share/doc/rust/html/core/intrinsics/try.v.html share/doc/rust/html/core/intrinsics/type_id.v.html share/doc/rust/html/core/intrinsics/type_name.v.html +share/doc/rust/html/core/intrinsics/unaligned_volatile_load.v.html +share/doc/rust/html/core/intrinsics/unaligned_volatile_store.v.html share/doc/rust/html/core/intrinsics/unchecked_div.v.html share/doc/rust/html/core/intrinsics/unchecked_rem.v.html share/doc/rust/html/core/intrinsics/unchecked_shl.v.html @@ -9741,11 +9982,11 @@ share/doc/rust/html/core/mem/sidebar-items.js share/doc/rust/html/core/mem/size_of.v.html share/doc/rust/html/core/mem/size_of_val.v.html share/doc/rust/html/core/mem/struct.Discriminant.html +share/doc/rust/html/core/mem/struct.ManuallyDrop.html share/doc/rust/html/core/mem/struct.PinMut.html 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/zeroed.v.html share/doc/rust/html/core/module_path.m.html share/doc/rust/html/core/num/ @@ -10040,135 +10281,6 @@ share/doc/rust/html/core/result/struct.IntoIter.html share/doc/rust/html/core/result/struct.Iter.html share/doc/rust/html/core/result/struct.IterMut.html share/doc/rust/html/core/sidebar-items.js -share/doc/rust/html/core/simd/ -share/doc/rust/html/core/simd/FromBits.t.html -share/doc/rust/html/core/simd/IntoBits.t.html -share/doc/rust/html/core/simd/f32x16.t.html -share/doc/rust/html/core/simd/f32x2.t.html -share/doc/rust/html/core/simd/f32x4.t.html -share/doc/rust/html/core/simd/f32x8.t.html -share/doc/rust/html/core/simd/f64x2.t.html -share/doc/rust/html/core/simd/f64x4.t.html -share/doc/rust/html/core/simd/f64x8.t.html -share/doc/rust/html/core/simd/i16x16.t.html -share/doc/rust/html/core/simd/i16x2.t.html -share/doc/rust/html/core/simd/i16x32.t.html -share/doc/rust/html/core/simd/i16x4.t.html -share/doc/rust/html/core/simd/i16x8.t.html -share/doc/rust/html/core/simd/i32x16.t.html -share/doc/rust/html/core/simd/i32x2.t.html -share/doc/rust/html/core/simd/i32x4.t.html -share/doc/rust/html/core/simd/i32x8.t.html -share/doc/rust/html/core/simd/i64x2.t.html -share/doc/rust/html/core/simd/i64x4.t.html -share/doc/rust/html/core/simd/i64x8.t.html -share/doc/rust/html/core/simd/i8x16.t.html -share/doc/rust/html/core/simd/i8x2.t.html -share/doc/rust/html/core/simd/i8x32.t.html -share/doc/rust/html/core/simd/i8x4.t.html -share/doc/rust/html/core/simd/i8x64.t.html -share/doc/rust/html/core/simd/i8x8.t.html -share/doc/rust/html/core/simd/index.html -share/doc/rust/html/core/simd/m16x16.t.html -share/doc/rust/html/core/simd/m16x2.t.html -share/doc/rust/html/core/simd/m16x4.t.html -share/doc/rust/html/core/simd/m16x8.t.html -share/doc/rust/html/core/simd/m1x16.t.html -share/doc/rust/html/core/simd/m1x32.t.html -share/doc/rust/html/core/simd/m1x64.t.html -share/doc/rust/html/core/simd/m1x8.t.html -share/doc/rust/html/core/simd/m32x2.t.html -share/doc/rust/html/core/simd/m32x4.t.html -share/doc/rust/html/core/simd/m32x8.t.html -share/doc/rust/html/core/simd/m64x2.t.html -share/doc/rust/html/core/simd/m64x4.t.html -share/doc/rust/html/core/simd/m8x16.t.html -share/doc/rust/html/core/simd/m8x2.t.html -share/doc/rust/html/core/simd/m8x32.t.html -share/doc/rust/html/core/simd/m8x4.t.html -share/doc/rust/html/core/simd/m8x8.t.html -share/doc/rust/html/core/simd/sidebar-items.js -share/doc/rust/html/core/simd/struct.f32x16.html -share/doc/rust/html/core/simd/struct.f32x2.html -share/doc/rust/html/core/simd/struct.f32x4.html -share/doc/rust/html/core/simd/struct.f32x8.html -share/doc/rust/html/core/simd/struct.f64x2.html -share/doc/rust/html/core/simd/struct.f64x4.html -share/doc/rust/html/core/simd/struct.f64x8.html -share/doc/rust/html/core/simd/struct.i16x16.html -share/doc/rust/html/core/simd/struct.i16x2.html -share/doc/rust/html/core/simd/struct.i16x32.html -share/doc/rust/html/core/simd/struct.i16x4.html -share/doc/rust/html/core/simd/struct.i16x8.html -share/doc/rust/html/core/simd/struct.i32x16.html -share/doc/rust/html/core/simd/struct.i32x2.html -share/doc/rust/html/core/simd/struct.i32x4.html -share/doc/rust/html/core/simd/struct.i32x8.html -share/doc/rust/html/core/simd/struct.i64x2.html -share/doc/rust/html/core/simd/struct.i64x4.html -share/doc/rust/html/core/simd/struct.i64x8.html -share/doc/rust/html/core/simd/struct.i8x16.html -share/doc/rust/html/core/simd/struct.i8x2.html -share/doc/rust/html/core/simd/struct.i8x32.html -share/doc/rust/html/core/simd/struct.i8x4.html -share/doc/rust/html/core/simd/struct.i8x64.html -share/doc/rust/html/core/simd/struct.i8x8.html -share/doc/rust/html/core/simd/struct.m16x16.html -share/doc/rust/html/core/simd/struct.m16x2.html -share/doc/rust/html/core/simd/struct.m16x4.html -share/doc/rust/html/core/simd/struct.m16x8.html -share/doc/rust/html/core/simd/struct.m1x16.html -share/doc/rust/html/core/simd/struct.m1x32.html -share/doc/rust/html/core/simd/struct.m1x64.html -share/doc/rust/html/core/simd/struct.m1x8.html -share/doc/rust/html/core/simd/struct.m32x2.html -share/doc/rust/html/core/simd/struct.m32x4.html -share/doc/rust/html/core/simd/struct.m32x8.html -share/doc/rust/html/core/simd/struct.m64x2.html -share/doc/rust/html/core/simd/struct.m64x4.html -share/doc/rust/html/core/simd/struct.m8x16.html -share/doc/rust/html/core/simd/struct.m8x2.html -share/doc/rust/html/core/simd/struct.m8x32.html -share/doc/rust/html/core/simd/struct.m8x4.html -share/doc/rust/html/core/simd/struct.m8x8.html -share/doc/rust/html/core/simd/struct.u16x16.html -share/doc/rust/html/core/simd/struct.u16x2.html -share/doc/rust/html/core/simd/struct.u16x32.html -share/doc/rust/html/core/simd/struct.u16x4.html -share/doc/rust/html/core/simd/struct.u16x8.html -share/doc/rust/html/core/simd/struct.u32x16.html -share/doc/rust/html/core/simd/struct.u32x2.html -share/doc/rust/html/core/simd/struct.u32x4.html -share/doc/rust/html/core/simd/struct.u32x8.html -share/doc/rust/html/core/simd/struct.u64x2.html -share/doc/rust/html/core/simd/struct.u64x4.html -share/doc/rust/html/core/simd/struct.u64x8.html -share/doc/rust/html/core/simd/struct.u8x16.html -share/doc/rust/html/core/simd/struct.u8x2.html -share/doc/rust/html/core/simd/struct.u8x32.html -share/doc/rust/html/core/simd/struct.u8x4.html -share/doc/rust/html/core/simd/struct.u8x64.html -share/doc/rust/html/core/simd/struct.u8x8.html -share/doc/rust/html/core/simd/trait.FromBits.html -share/doc/rust/html/core/simd/trait.IntoBits.html -share/doc/rust/html/core/simd/u16x16.t.html -share/doc/rust/html/core/simd/u16x2.t.html -share/doc/rust/html/core/simd/u16x32.t.html -share/doc/rust/html/core/simd/u16x4.t.html -share/doc/rust/html/core/simd/u16x8.t.html -share/doc/rust/html/core/simd/u32x16.t.html -share/doc/rust/html/core/simd/u32x2.t.html -share/doc/rust/html/core/simd/u32x4.t.html -share/doc/rust/html/core/simd/u32x8.t.html -share/doc/rust/html/core/simd/u64x2.t.html -share/doc/rust/html/core/simd/u64x4.t.html -share/doc/rust/html/core/simd/u64x8.t.html -share/doc/rust/html/core/simd/u8x16.t.html -share/doc/rust/html/core/simd/u8x2.t.html -share/doc/rust/html/core/simd/u8x32.t.html -share/doc/rust/html/core/simd/u8x4.t.html -share/doc/rust/html/core/simd/u8x64.t.html -share/doc/rust/html/core/simd/u8x8.t.html share/doc/rust/html/core/slice/ share/doc/rust/html/core/slice/Chunks.t.html share/doc/rust/html/core/slice/ChunksMut.t.html @@ -10236,6 +10348,7 @@ share/doc/rust/html/core/str/RSplit.t.html share/doc/rust/html/core/str/RSplitN.t.html share/doc/rust/html/core/str/RSplitTerminator.t.html share/doc/rust/html/core/str/Split.t.html +share/doc/rust/html/core/str/SplitAsciiWhitespace.t.html share/doc/rust/html/core/str/SplitN.t.html share/doc/rust/html/core/str/SplitTerminator.t.html share/doc/rust/html/core/str/SplitWhitespace.t.html @@ -10298,6 +10411,7 @@ share/doc/rust/html/core/str/struct.RSplit.html share/doc/rust/html/core/str/struct.RSplitN.html share/doc/rust/html/core/str/struct.RSplitTerminator.html share/doc/rust/html/core/str/struct.Split.html +share/doc/rust/html/core/str/struct.SplitAsciiWhitespace.html share/doc/rust/html/core/str/struct.SplitN.html share/doc/rust/html/core/str/struct.SplitTerminator.html share/doc/rust/html/core/str/struct.SplitWhitespace.html @@ -10371,23 +10485,43 @@ share/doc/rust/html/core/task/Executor.t.html share/doc/rust/html/core/task/LocalWaker.t.html share/doc/rust/html/core/task/Poll.t.html share/doc/rust/html/core/task/SpawnErrorKind.t.html +share/doc/rust/html/core/task/SpawnLocalObjError.t.html share/doc/rust/html/core/task/SpawnObjError.t.html -share/doc/rust/html/core/task/TaskObj.t.html -share/doc/rust/html/core/task/UnsafeTask.t.html share/doc/rust/html/core/task/UnsafeWake.t.html share/doc/rust/html/core/task/Waker.t.html +share/doc/rust/html/core/task/context/ +share/doc/rust/html/core/task/context/Context.t.html +share/doc/rust/html/core/task/context/struct.Context.html share/doc/rust/html/core/task/enum.Poll.html +share/doc/rust/html/core/task/executor/ +share/doc/rust/html/core/task/executor/Executor.t.html +share/doc/rust/html/core/task/executor/SpawnErrorKind.t.html +share/doc/rust/html/core/task/executor/SpawnLocalObjError.t.html +share/doc/rust/html/core/task/executor/SpawnObjError.t.html +share/doc/rust/html/core/task/executor/struct.SpawnErrorKind.html +share/doc/rust/html/core/task/executor/struct.SpawnLocalObjError.html +share/doc/rust/html/core/task/executor/struct.SpawnObjError.html +share/doc/rust/html/core/task/executor/trait.Executor.html share/doc/rust/html/core/task/index.html +share/doc/rust/html/core/task/poll/ +share/doc/rust/html/core/task/poll/Poll.t.html +share/doc/rust/html/core/task/poll/enum.Poll.html share/doc/rust/html/core/task/sidebar-items.js share/doc/rust/html/core/task/struct.Context.html share/doc/rust/html/core/task/struct.LocalWaker.html share/doc/rust/html/core/task/struct.SpawnErrorKind.html +share/doc/rust/html/core/task/struct.SpawnLocalObjError.html share/doc/rust/html/core/task/struct.SpawnObjError.html -share/doc/rust/html/core/task/struct.TaskObj.html share/doc/rust/html/core/task/struct.Waker.html share/doc/rust/html/core/task/trait.Executor.html -share/doc/rust/html/core/task/trait.UnsafeTask.html share/doc/rust/html/core/task/trait.UnsafeWake.html +share/doc/rust/html/core/task/wake/ +share/doc/rust/html/core/task/wake/LocalWaker.t.html +share/doc/rust/html/core/task/wake/UnsafeWake.t.html +share/doc/rust/html/core/task/wake/Waker.t.html +share/doc/rust/html/core/task/wake/struct.LocalWaker.html +share/doc/rust/html/core/task/wake/struct.Waker.html +share/doc/rust/html/core/task/wake/trait.UnsafeWake.html share/doc/rust/html/core/time/ share/doc/rust/html/core/time/Duration.t.html share/doc/rust/html/core/time/index.html @@ -10430,6 +10564,13 @@ share/doc/rust/html/core/u8/constant.MIN.html share/doc/rust/html/core/u8/index.html share/doc/rust/html/core/u8/sidebar-items.js share/doc/rust/html/core/unicode/ +share/doc/rust/html/core/unicode/conversions/ +share/doc/rust/html/core/unicode/conversions/fn.to_lower.html +share/doc/rust/html/core/unicode/conversions/fn.to_upper.html +share/doc/rust/html/core/unicode/conversions/index.html +share/doc/rust/html/core/unicode/conversions/sidebar-items.js +share/doc/rust/html/core/unicode/conversions/to_lower.v.html +share/doc/rust/html/core/unicode/conversions/to_upper.v.html share/doc/rust/html/core/unicode/derived_property/ share/doc/rust/html/core/unicode/derived_property/Case_Ignorable.v.html share/doc/rust/html/core/unicode/derived_property/Cased.v.html @@ -10447,6 +10588,11 @@ share/doc/rust/html/core/unicode/sidebar-items.js share/doc/rust/html/core/unicode/tables/ share/doc/rust/html/core/unicode/tables/UNICODE_VERSION.v.html share/doc/rust/html/core/unicode/tables/constant.UNICODE_VERSION.html +share/doc/rust/html/core/unicode/tables/conversions/ +share/doc/rust/html/core/unicode/tables/conversions/fn.to_lower.html +share/doc/rust/html/core/unicode/tables/conversions/fn.to_upper.html +share/doc/rust/html/core/unicode/tables/conversions/to_lower.v.html +share/doc/rust/html/core/unicode/tables/conversions/to_upper.v.html share/doc/rust/html/core/unicode/tables/derived_property/ share/doc/rust/html/core/unicode/tables/derived_property/Case_Ignorable.v.html share/doc/rust/html/core/unicode/tables/derived_property/Cased.v.html @@ -10518,7 +10664,7 @@ share/doc/rust/html/implementors/alloc/str/trait.FromStr.js share/doc/rust/html/implementors/alloc/string/ share/doc/rust/html/implementors/alloc/string/trait.ToString.js share/doc/rust/html/implementors/alloc/task/ -share/doc/rust/html/implementors/alloc/task/trait.UnsafeTask.js +share/doc/rust/html/implementors/alloc/task/trait.Executor.js share/doc/rust/html/implementors/core/ share/doc/rust/html/implementors/core/any/ share/doc/rust/html/implementors/core/any/trait.Any.js @@ -10555,7 +10701,12 @@ share/doc/rust/html/implementors/core/fmt/trait.UpperExp.js share/doc/rust/html/implementors/core/fmt/trait.UpperHex.js share/doc/rust/html/implementors/core/fmt/trait.Write.js share/doc/rust/html/implementors/core/future/ +share/doc/rust/html/implementors/core/future/future/ +share/doc/rust/html/implementors/core/future/future/trait.Future.js +share/doc/rust/html/implementors/core/future/future_obj/ +share/doc/rust/html/implementors/core/future/future_obj/trait.UnsafeFutureObj.js share/doc/rust/html/implementors/core/future/trait.Future.js +share/doc/rust/html/implementors/core/future/trait.UnsafeFutureObj.js share/doc/rust/html/implementors/core/hash/ share/doc/rust/html/implementors/core/hash/trait.BuildHasher.js share/doc/rust/html/implementors/core/hash/trait.Hash.js @@ -10644,9 +10795,6 @@ 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/unsize/ share/doc/rust/html/implementors/core/ops/unsize/trait.CoerceUnsized.js -share/doc/rust/html/implementors/core/simd/ -share/doc/rust/html/implementors/core/simd/trait.FromBits.js -share/doc/rust/html/implementors/core/simd/trait.IntoBits.js share/doc/rust/html/implementors/core/slice/ share/doc/rust/html/implementors/core/slice/trait.SliceIndex.js share/doc/rust/html/implementors/core/str/ @@ -10701,6 +10849,7 @@ share/doc/rust/html/implementors/std/fmt/trait.UpperHex.js share/doc/rust/html/implementors/std/fmt/trait.Write.js share/doc/rust/html/implementors/std/future/ share/doc/rust/html/implementors/std/future/trait.Future.js +share/doc/rust/html/implementors/std/future/trait.UnsafeFutureObj.js share/doc/rust/html/implementors/std/hash/ share/doc/rust/html/implementors/std/hash/trait.BuildHasher.js share/doc/rust/html/implementors/std/hash/trait.Hash.js @@ -10813,9 +10962,6 @@ share/doc/rust/html/implementors/std/panic/trait.RefUnwindSafe.js share/doc/rust/html/implementors/std/panic/trait.UnwindSafe.js share/doc/rust/html/implementors/std/process/ share/doc/rust/html/implementors/std/process/trait.Termination.js -share/doc/rust/html/implementors/std/simd/ -share/doc/rust/html/implementors/std/simd/trait.FromBits.js -share/doc/rust/html/implementors/std/simd/trait.IntoBits.js share/doc/rust/html/implementors/std/slice/ share/doc/rust/html/implementors/std/slice/trait.SliceConcatExt.js share/doc/rust/html/implementors/std/slice/trait.SliceIndex.js @@ -10829,7 +10975,7 @@ 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/task/ -share/doc/rust/html/implementors/std/task/trait.UnsafeTask.js +share/doc/rust/html/implementors/std/task/trait.Executor.js share/doc/rust/html/implementors/test/ share/doc/rust/html/implementors/test/stats/ share/doc/rust/html/implementors/test/stats/trait.Stats.js @@ -10946,11 +11092,18 @@ share/doc/rust/html/proc_macro/enum.Delimiter.html share/doc/rust/html/proc_macro/enum.Level.html share/doc/rust/html/proc_macro/enum.Spacing.html share/doc/rust/html/proc_macro/enum.TokenTree.html +share/doc/rust/html/proc_macro/fn.quote.html share/doc/rust/html/proc_macro/fn.quote_span.html share/doc/rust/html/proc_macro/index.html share/doc/rust/html/proc_macro/macro.quote!.html share/doc/rust/html/proc_macro/macro.quote.html +share/doc/rust/html/proc_macro/quote/ share/doc/rust/html/proc_macro/quote.m.html +share/doc/rust/html/proc_macro/quote.v.html +share/doc/rust/html/proc_macro/quote/fn.quote.html +share/doc/rust/html/proc_macro/quote/fn.quote_span.html +share/doc/rust/html/proc_macro/quote/quote.v.html +share/doc/rust/html/proc_macro/quote/quote_span.v.html share/doc/rust/html/proc_macro/quote_span.v.html share/doc/rust/html/proc_macro/sidebar-items.js share/doc/rust/html/proc_macro/struct.Diagnostic.html @@ -11417,28 +11570,31 @@ share/doc/rust/html/settings.js share/doc/rust/html/src/ share/doc/rust/html/src/alloc/ share/doc/rust/html/src/alloc/alloc.rs.html -share/doc/rust/html/src/alloc/arc.rs.html -share/doc/rust/html/src/alloc/binary_heap.rs.html share/doc/rust/html/src/alloc/borrow.rs.html share/doc/rust/html/src/alloc/boxed.rs.html -share/doc/rust/html/src/alloc/btree/ -share/doc/rust/html/src/alloc/btree/map.rs.html -share/doc/rust/html/src/alloc/btree/mod.rs.html -share/doc/rust/html/src/alloc/btree/node.rs.html -share/doc/rust/html/src/alloc/btree/search.rs.html -share/doc/rust/html/src/alloc/btree/set.rs.html +share/doc/rust/html/src/alloc/collections/ +share/doc/rust/html/src/alloc/collections/binary_heap.rs.html +share/doc/rust/html/src/alloc/collections/btree/ +share/doc/rust/html/src/alloc/collections/btree/map.rs.html +share/doc/rust/html/src/alloc/collections/btree/mod.rs.html +share/doc/rust/html/src/alloc/collections/btree/node.rs.html +share/doc/rust/html/src/alloc/collections/btree/search.rs.html +share/doc/rust/html/src/alloc/collections/btree/set.rs.html +share/doc/rust/html/src/alloc/collections/linked_list.rs.html +share/doc/rust/html/src/alloc/collections/mod.rs.html +share/doc/rust/html/src/alloc/collections/vec_deque.rs.html share/doc/rust/html/src/alloc/fmt.rs.html share/doc/rust/html/src/alloc/lib.rs.html -share/doc/rust/html/src/alloc/linked_list.rs.html share/doc/rust/html/src/alloc/macros.rs.html +share/doc/rust/html/src/alloc/prelude.rs.html share/doc/rust/html/src/alloc/raw_vec.rs.html share/doc/rust/html/src/alloc/rc.rs.html share/doc/rust/html/src/alloc/slice.rs.html share/doc/rust/html/src/alloc/str.rs.html share/doc/rust/html/src/alloc/string.rs.html +share/doc/rust/html/src/alloc/sync.rs.html share/doc/rust/html/src/alloc/task.rs.html share/doc/rust/html/src/alloc/vec.rs.html -share/doc/rust/html/src/alloc/vec_deque.rs.html share/doc/rust/html/src/core/ share/doc/rust/html/src/core/alloc.rs.html share/doc/rust/html/src/core/any.rs.html @@ -11462,7 +11618,10 @@ share/doc/rust/html/src/core/fmt/mod.rs.html share/doc/rust/html/src/core/fmt/num.rs.html share/doc/rust/html/src/core/fmt/rt/ share/doc/rust/html/src/core/fmt/rt/v1.rs.html -share/doc/rust/html/src/core/future.rs.html +share/doc/rust/html/src/core/future/ +share/doc/rust/html/src/core/future/future.rs.html +share/doc/rust/html/src/core/future/future_obj.rs.html +share/doc/rust/html/src/core/future/mod.rs.html share/doc/rust/html/src/core/hash/ share/doc/rust/html/src/core/hash/mod.rs.html share/doc/rust/html/src/core/hash/sip.rs.html @@ -11549,7 +11708,12 @@ share/doc/rust/html/src/core/str/pattern.rs.html share/doc/rust/html/src/core/sync/ share/doc/rust/html/src/core/sync/atomic.rs.html share/doc/rust/html/src/core/sync/mod.rs.html -share/doc/rust/html/src/core/task.rs.html +share/doc/rust/html/src/core/task/ +share/doc/rust/html/src/core/task/context.rs.html +share/doc/rust/html/src/core/task/executor.rs.html +share/doc/rust/html/src/core/task/mod.rs.html +share/doc/rust/html/src/core/task/poll.rs.html +share/doc/rust/html/src/core/task/wake.rs.html share/doc/rust/html/src/core/time.rs.html share/doc/rust/html/src/core/tuple.rs.html share/doc/rust/html/src/core/unicode/ @@ -11568,6 +11732,8 @@ share/doc/rust/html/src/core/up/stdsimd/coresimd/aarch64/mod.rs.html share/doc/rust/html/src/core/up/stdsimd/coresimd/aarch64/neon.rs.html share/doc/rust/html/src/core/up/stdsimd/coresimd/aarch64/v8.rs.html share/doc/rust/html/src/core/up/stdsimd/coresimd/arm/ +share/doc/rust/html/src/core/up/stdsimd/coresimd/arm/cmsis.rs.html +share/doc/rust/html/src/core/up/stdsimd/coresimd/arm/dsp.rs.html share/doc/rust/html/src/core/up/stdsimd/coresimd/arm/mod.rs.html share/doc/rust/html/src/core/up/stdsimd/coresimd/arm/neon.rs.html share/doc/rust/html/src/core/up/stdsimd/coresimd/arm/v6.rs.html @@ -11578,43 +11744,13 @@ share/doc/rust/html/src/core/up/stdsimd/coresimd/mips/msa.rs.html share/doc/rust/html/src/core/up/stdsimd/coresimd/mod.rs.html share/doc/rust/html/src/core/up/stdsimd/coresimd/nvptx/ share/doc/rust/html/src/core/up/stdsimd/coresimd/nvptx/mod.rs.html -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/ -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/api/ -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/api/arithmetic_ops.rs.html -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/api/arithmetic_reductions.rs.html -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/api/arithmetic_scalar_ops.rs.html -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/api/bitwise_ops.rs.html -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/api/bitwise_reductions.rs.html -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/api/bitwise_scalar_ops.rs.html -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/api/cmp.rs.html -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/api/default.rs.html -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/api/eq.rs.html -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/api/fmt.rs.html -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/api/from.rs.html -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/api/from_bits.rs.html -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/api/hash.rs.html -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/api/load_store.rs.html -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/api/masks.rs.html -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/api/masks_reductions.rs.html -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/api/masks_select.rs.html -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/api/minimal.rs.html -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/api/minmax.rs.html -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/api/minmax_reductions.rs.html -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/api/mod.rs.html -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/api/neg.rs.html -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/api/partial_eq.rs.html -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/api/scalar_shifts.rs.html -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/api/shifts.rs.html -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/codegen/ -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/codegen/masks_reductions.rs.html -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/codegen/mod.rs.html -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/mod.rs.html -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/v128.rs.html -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/v16.rs.html -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/v256.rs.html -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/v32.rs.html -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/v512.rs.html -share/doc/rust/html/src/core/up/stdsimd/coresimd/ppsv/v64.rs.html +share/doc/rust/html/src/core/up/stdsimd/coresimd/powerpc/ +share/doc/rust/html/src/core/up/stdsimd/coresimd/powerpc/mod.rs.html +share/doc/rust/html/src/core/up/stdsimd/coresimd/powerpc/vsx.rs.html +share/doc/rust/html/src/core/up/stdsimd/coresimd/powerpc64/ +share/doc/rust/html/src/core/up/stdsimd/coresimd/powerpc64/mod.rs.html +share/doc/rust/html/src/core/up/stdsimd/coresimd/powerpc64/vsx.rs.html +share/doc/rust/html/src/core/up/stdsimd/coresimd/simd.rs.html share/doc/rust/html/src/core/up/stdsimd/coresimd/simd_llvm.rs.html share/doc/rust/html/src/core/up/stdsimd/coresimd/x86/ share/doc/rust/html/src/core/up/stdsimd/coresimd/x86/abm.rs.html @@ -11663,6 +11799,7 @@ share/doc/rust/html/src/proc_macro/ share/doc/rust/html/src/proc_macro/diagnostic.rs.html share/doc/rust/html/src/proc_macro/lib.rs.html share/doc/rust/html/src/proc_macro/quote.rs.html +share/doc/rust/html/src/proc_macro/rustc.rs.html share/doc/rust/html/src/std/ share/doc/rust/html/src/std/alloc.rs.html share/doc/rust/html/src/std/ascii.rs.html @@ -11682,6 +11819,7 @@ share/doc/rust/html/src/std/ffi/c_str.rs.html share/doc/rust/html/src/std/ffi/mod.rs.html share/doc/rust/html/src/std/ffi/os_str.rs.html share/doc/rust/html/src/std/fs.rs.html +share/doc/rust/html/src/std/future.rs.html share/doc/rust/html/src/std/io/ share/doc/rust/html/src/std/io/buffered.rs.html share/doc/rust/html/src/std/io/cursor.rs.html @@ -11849,7 +11987,6 @@ share/doc/rust/html/std/alloc/ share/doc/rust/html/std/alloc/Alloc.t.html share/doc/rust/html/std/alloc/AllocErr.t.html share/doc/rust/html/std/alloc/CannotReallocInPlace.t.html -share/doc/rust/html/std/alloc/CollectionAllocErr.t.html share/doc/rust/html/std/alloc/Excess.t.html share/doc/rust/html/std/alloc/Global.t.html share/doc/rust/html/std/alloc/GlobalAlloc.t.html @@ -11859,7 +11996,6 @@ share/doc/rust/html/std/alloc/System.t.html share/doc/rust/html/std/alloc/alloc.v.html share/doc/rust/html/std/alloc/alloc_zeroed.v.html share/doc/rust/html/std/alloc/dealloc.v.html -share/doc/rust/html/std/alloc/enum.CollectionAllocErr.html share/doc/rust/html/std/alloc/fn.alloc.html share/doc/rust/html/std/alloc/fn.alloc_zeroed.html share/doc/rust/html/std/alloc/fn.dealloc.html @@ -11903,6 +12039,12 @@ share/doc/rust/html/std/arch/mips/sidebar-items.js share/doc/rust/html/std/arch/mips64/ share/doc/rust/html/std/arch/mips64/index.html share/doc/rust/html/std/arch/mips64/sidebar-items.js +share/doc/rust/html/std/arch/powerpc/ +share/doc/rust/html/std/arch/powerpc/index.html +share/doc/rust/html/std/arch/powerpc/sidebar-items.js +share/doc/rust/html/std/arch/powerpc64/ +share/doc/rust/html/std/arch/powerpc64/index.html +share/doc/rust/html/std/arch/powerpc64/sidebar-items.js share/doc/rust/html/std/arch/sidebar-items.js share/doc/rust/html/std/arch/x86/ share/doc/rust/html/std/arch/x86/index.html @@ -11923,6 +12065,7 @@ share/doc/rust/html/std/ascii/trait.AsciiExt.html share/doc/rust/html/std/assert.m.html share/doc/rust/html/std/assert_eq.m.html share/doc/rust/html/std/assert_ne.m.html +share/doc/rust/html/std/await.m.html share/doc/rust/html/std/bool.t.html share/doc/rust/html/std/borrow/ share/doc/rust/html/std/borrow/Borrow.t.html @@ -12246,135 +12389,6 @@ share/doc/rust/html/std/convert/trait.From.html share/doc/rust/html/std/convert/trait.Into.html share/doc/rust/html/std/convert/trait.TryFrom.html share/doc/rust/html/std/convert/trait.TryInto.html -share/doc/rust/html/std/coresimd/ -share/doc/rust/html/std/coresimd/simd/ -share/doc/rust/html/std/coresimd/simd/FromBits.t.html -share/doc/rust/html/std/coresimd/simd/IntoBits.t.html -share/doc/rust/html/std/coresimd/simd/f32x16.t.html -share/doc/rust/html/std/coresimd/simd/f32x2.t.html -share/doc/rust/html/std/coresimd/simd/f32x4.t.html -share/doc/rust/html/std/coresimd/simd/f32x8.t.html -share/doc/rust/html/std/coresimd/simd/f64x2.t.html -share/doc/rust/html/std/coresimd/simd/f64x4.t.html -share/doc/rust/html/std/coresimd/simd/f64x8.t.html -share/doc/rust/html/std/coresimd/simd/i16x16.t.html -share/doc/rust/html/std/coresimd/simd/i16x2.t.html -share/doc/rust/html/std/coresimd/simd/i16x32.t.html -share/doc/rust/html/std/coresimd/simd/i16x4.t.html -share/doc/rust/html/std/coresimd/simd/i16x8.t.html -share/doc/rust/html/std/coresimd/simd/i32x16.t.html -share/doc/rust/html/std/coresimd/simd/i32x2.t.html -share/doc/rust/html/std/coresimd/simd/i32x4.t.html -share/doc/rust/html/std/coresimd/simd/i32x8.t.html -share/doc/rust/html/std/coresimd/simd/i64x2.t.html -share/doc/rust/html/std/coresimd/simd/i64x4.t.html -share/doc/rust/html/std/coresimd/simd/i64x8.t.html -share/doc/rust/html/std/coresimd/simd/i8x16.t.html -share/doc/rust/html/std/coresimd/simd/i8x2.t.html -share/doc/rust/html/std/coresimd/simd/i8x32.t.html -share/doc/rust/html/std/coresimd/simd/i8x4.t.html -share/doc/rust/html/std/coresimd/simd/i8x64.t.html -share/doc/rust/html/std/coresimd/simd/i8x8.t.html -share/doc/rust/html/std/coresimd/simd/index.html -share/doc/rust/html/std/coresimd/simd/m16x16.t.html -share/doc/rust/html/std/coresimd/simd/m16x2.t.html -share/doc/rust/html/std/coresimd/simd/m16x4.t.html -share/doc/rust/html/std/coresimd/simd/m16x8.t.html -share/doc/rust/html/std/coresimd/simd/m1x16.t.html -share/doc/rust/html/std/coresimd/simd/m1x32.t.html -share/doc/rust/html/std/coresimd/simd/m1x64.t.html -share/doc/rust/html/std/coresimd/simd/m1x8.t.html -share/doc/rust/html/std/coresimd/simd/m32x2.t.html -share/doc/rust/html/std/coresimd/simd/m32x4.t.html -share/doc/rust/html/std/coresimd/simd/m32x8.t.html -share/doc/rust/html/std/coresimd/simd/m64x2.t.html -share/doc/rust/html/std/coresimd/simd/m64x4.t.html -share/doc/rust/html/std/coresimd/simd/m8x16.t.html -share/doc/rust/html/std/coresimd/simd/m8x2.t.html -share/doc/rust/html/std/coresimd/simd/m8x32.t.html -share/doc/rust/html/std/coresimd/simd/m8x4.t.html -share/doc/rust/html/std/coresimd/simd/m8x8.t.html -share/doc/rust/html/std/coresimd/simd/struct.f32x16.html -share/doc/rust/html/std/coresimd/simd/struct.f32x2.html -share/doc/rust/html/std/coresimd/simd/struct.f32x4.html -share/doc/rust/html/std/coresimd/simd/struct.f32x8.html -share/doc/rust/html/std/coresimd/simd/struct.f64x2.html -share/doc/rust/html/std/coresimd/simd/struct.f64x4.html -share/doc/rust/html/std/coresimd/simd/struct.f64x8.html -share/doc/rust/html/std/coresimd/simd/struct.i16x16.html -share/doc/rust/html/std/coresimd/simd/struct.i16x2.html -share/doc/rust/html/std/coresimd/simd/struct.i16x32.html -share/doc/rust/html/std/coresimd/simd/struct.i16x4.html -share/doc/rust/html/std/coresimd/simd/struct.i16x8.html -share/doc/rust/html/std/coresimd/simd/struct.i32x16.html -share/doc/rust/html/std/coresimd/simd/struct.i32x2.html -share/doc/rust/html/std/coresimd/simd/struct.i32x4.html -share/doc/rust/html/std/coresimd/simd/struct.i32x8.html -share/doc/rust/html/std/coresimd/simd/struct.i64x2.html -share/doc/rust/html/std/coresimd/simd/struct.i64x4.html -share/doc/rust/html/std/coresimd/simd/struct.i64x8.html -share/doc/rust/html/std/coresimd/simd/struct.i8x16.html -share/doc/rust/html/std/coresimd/simd/struct.i8x2.html -share/doc/rust/html/std/coresimd/simd/struct.i8x32.html -share/doc/rust/html/std/coresimd/simd/struct.i8x4.html -share/doc/rust/html/std/coresimd/simd/struct.i8x64.html -share/doc/rust/html/std/coresimd/simd/struct.i8x8.html -share/doc/rust/html/std/coresimd/simd/struct.m16x16.html -share/doc/rust/html/std/coresimd/simd/struct.m16x2.html -share/doc/rust/html/std/coresimd/simd/struct.m16x4.html -share/doc/rust/html/std/coresimd/simd/struct.m16x8.html -share/doc/rust/html/std/coresimd/simd/struct.m1x16.html -share/doc/rust/html/std/coresimd/simd/struct.m1x32.html -share/doc/rust/html/std/coresimd/simd/struct.m1x64.html -share/doc/rust/html/std/coresimd/simd/struct.m1x8.html -share/doc/rust/html/std/coresimd/simd/struct.m32x2.html -share/doc/rust/html/std/coresimd/simd/struct.m32x4.html -share/doc/rust/html/std/coresimd/simd/struct.m32x8.html -share/doc/rust/html/std/coresimd/simd/struct.m64x2.html -share/doc/rust/html/std/coresimd/simd/struct.m64x4.html -share/doc/rust/html/std/coresimd/simd/struct.m8x16.html -share/doc/rust/html/std/coresimd/simd/struct.m8x2.html -share/doc/rust/html/std/coresimd/simd/struct.m8x32.html -share/doc/rust/html/std/coresimd/simd/struct.m8x4.html -share/doc/rust/html/std/coresimd/simd/struct.m8x8.html -share/doc/rust/html/std/coresimd/simd/struct.u16x16.html -share/doc/rust/html/std/coresimd/simd/struct.u16x2.html -share/doc/rust/html/std/coresimd/simd/struct.u16x32.html -share/doc/rust/html/std/coresimd/simd/struct.u16x4.html -share/doc/rust/html/std/coresimd/simd/struct.u16x8.html -share/doc/rust/html/std/coresimd/simd/struct.u32x16.html -share/doc/rust/html/std/coresimd/simd/struct.u32x2.html -share/doc/rust/html/std/coresimd/simd/struct.u32x4.html -share/doc/rust/html/std/coresimd/simd/struct.u32x8.html -share/doc/rust/html/std/coresimd/simd/struct.u64x2.html -share/doc/rust/html/std/coresimd/simd/struct.u64x4.html -share/doc/rust/html/std/coresimd/simd/struct.u64x8.html -share/doc/rust/html/std/coresimd/simd/struct.u8x16.html -share/doc/rust/html/std/coresimd/simd/struct.u8x2.html -share/doc/rust/html/std/coresimd/simd/struct.u8x32.html -share/doc/rust/html/std/coresimd/simd/struct.u8x4.html -share/doc/rust/html/std/coresimd/simd/struct.u8x64.html -share/doc/rust/html/std/coresimd/simd/struct.u8x8.html -share/doc/rust/html/std/coresimd/simd/trait.FromBits.html -share/doc/rust/html/std/coresimd/simd/trait.IntoBits.html -share/doc/rust/html/std/coresimd/simd/u16x16.t.html -share/doc/rust/html/std/coresimd/simd/u16x2.t.html -share/doc/rust/html/std/coresimd/simd/u16x32.t.html -share/doc/rust/html/std/coresimd/simd/u16x4.t.html -share/doc/rust/html/std/coresimd/simd/u16x8.t.html -share/doc/rust/html/std/coresimd/simd/u32x16.t.html -share/doc/rust/html/std/coresimd/simd/u32x2.t.html -share/doc/rust/html/std/coresimd/simd/u32x4.t.html -share/doc/rust/html/std/coresimd/simd/u32x8.t.html -share/doc/rust/html/std/coresimd/simd/u64x2.t.html -share/doc/rust/html/std/coresimd/simd/u64x4.t.html -share/doc/rust/html/std/coresimd/simd/u64x8.t.html -share/doc/rust/html/std/coresimd/simd/u8x16.t.html -share/doc/rust/html/std/coresimd/simd/u8x2.t.html -share/doc/rust/html/std/coresimd/simd/u8x32.t.html -share/doc/rust/html/std/coresimd/simd/u8x4.t.html -share/doc/rust/html/std/coresimd/simd/u8x64.t.html -share/doc/rust/html/std/coresimd/simd/u8x8.t.html share/doc/rust/html/std/debug_assert.m.html share/doc/rust/html/std/debug_assert_eq.m.html share/doc/rust/html/std/debug_assert_ne.m.html @@ -12741,9 +12755,23 @@ share/doc/rust/html/std/fs/symlink_metadata.v.html share/doc/rust/html/std/fs/write.v.html share/doc/rust/html/std/future/ share/doc/rust/html/std/future/Future.t.html +share/doc/rust/html/std/future/FutureObj.t.html +share/doc/rust/html/std/future/LocalFutureObj.t.html +share/doc/rust/html/std/future/UnsafeFutureObj.t.html +share/doc/rust/html/std/future/fn.from_generator.html +share/doc/rust/html/std/future/fn.get_task_cx.html +share/doc/rust/html/std/future/fn.poll_in_task_cx.html +share/doc/rust/html/std/future/fn.set_task_cx.html +share/doc/rust/html/std/future/from_generator.v.html +share/doc/rust/html/std/future/get_task_cx.v.html share/doc/rust/html/std/future/index.html +share/doc/rust/html/std/future/poll_in_task_cx.v.html +share/doc/rust/html/std/future/set_task_cx.v.html share/doc/rust/html/std/future/sidebar-items.js +share/doc/rust/html/std/future/struct.FutureObj.html +share/doc/rust/html/std/future/struct.LocalFutureObj.html share/doc/rust/html/std/future/trait.Future.html +share/doc/rust/html/std/future/trait.UnsafeFutureObj.html share/doc/rust/html/std/hash/ share/doc/rust/html/std/hash/BuildHasher.t.html share/doc/rust/html/std/hash/BuildHasherDefault.t.html @@ -13106,6 +13134,8 @@ share/doc/rust/html/std/intrinsics/fn.truncf64.html share/doc/rust/html/std/intrinsics/fn.try.html share/doc/rust/html/std/intrinsics/fn.type_id.html share/doc/rust/html/std/intrinsics/fn.type_name.html +share/doc/rust/html/std/intrinsics/fn.unaligned_volatile_load.html +share/doc/rust/html/std/intrinsics/fn.unaligned_volatile_store.html share/doc/rust/html/std/intrinsics/fn.unchecked_div.html share/doc/rust/html/std/intrinsics/fn.unchecked_rem.html share/doc/rust/html/std/intrinsics/fn.unchecked_shl.html @@ -13170,6 +13200,8 @@ share/doc/rust/html/std/intrinsics/truncf64.v.html share/doc/rust/html/std/intrinsics/try.v.html share/doc/rust/html/std/intrinsics/type_id.v.html share/doc/rust/html/std/intrinsics/type_name.v.html +share/doc/rust/html/std/intrinsics/unaligned_volatile_load.v.html +share/doc/rust/html/std/intrinsics/unaligned_volatile_store.v.html share/doc/rust/html/std/intrinsics/unchecked_div.v.html share/doc/rust/html/std/intrinsics/unchecked_rem.v.html share/doc/rust/html/std/intrinsics/unchecked_shl.v.html @@ -13321,6 +13353,7 @@ share/doc/rust/html/std/is_arm_feature_detected.m.html share/doc/rust/html/std/is_mips64_feature_detected.m.html share/doc/rust/html/std/is_mips_feature_detected.m.html share/doc/rust/html/std/is_powerpc64_feature_detected.m.html +share/doc/rust/html/std/is_powerpc_feature_detected.m.html share/doc/rust/html/std/is_x86_feature_detected.m.html share/doc/rust/html/std/isize/ share/doc/rust/html/std/isize.t.html @@ -13419,6 +13452,8 @@ share/doc/rust/html/std/macro.assert_eq!.html share/doc/rust/html/std/macro.assert_eq.html share/doc/rust/html/std/macro.assert_ne!.html share/doc/rust/html/std/macro.assert_ne.html +share/doc/rust/html/std/macro.await!.html +share/doc/rust/html/std/macro.await.html share/doc/rust/html/std/macro.cfg!.html share/doc/rust/html/std/macro.cfg.html share/doc/rust/html/std/macro.column!.html @@ -13463,6 +13498,8 @@ share/doc/rust/html/std/macro.is_mips_feature_detected!.html share/doc/rust/html/std/macro.is_mips_feature_detected.html share/doc/rust/html/std/macro.is_powerpc64_feature_detected!.html share/doc/rust/html/std/macro.is_powerpc64_feature_detected.html +share/doc/rust/html/std/macro.is_powerpc_feature_detected!.html +share/doc/rust/html/std/macro.is_powerpc_feature_detected.html share/doc/rust/html/std/macro.is_x86_feature_detected!.html share/doc/rust/html/std/macro.is_x86_feature_detected.html share/doc/rust/html/std/macro.line!.html @@ -13548,12 +13585,12 @@ share/doc/rust/html/std/mem/sidebar-items.js share/doc/rust/html/std/mem/size_of.v.html share/doc/rust/html/std/mem/size_of_val.v.html share/doc/rust/html/std/mem/struct.Discriminant.html +share/doc/rust/html/std/mem/struct.ManuallyDrop.html share/doc/rust/html/std/mem/struct.PinMut.html share/doc/rust/html/std/mem/swap.v.html 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/zeroed.v.html share/doc/rust/html/std/module_path.m.html share/doc/rust/html/std/net/ @@ -14220,135 +14257,6 @@ share/doc/rust/html/std/result/struct.Iter.html share/doc/rust/html/std/result/struct.IterMut.html share/doc/rust/html/std/select.m.html share/doc/rust/html/std/sidebar-items.js -share/doc/rust/html/std/simd/ -share/doc/rust/html/std/simd/FromBits.t.html -share/doc/rust/html/std/simd/IntoBits.t.html -share/doc/rust/html/std/simd/f32x16.t.html -share/doc/rust/html/std/simd/f32x2.t.html -share/doc/rust/html/std/simd/f32x4.t.html -share/doc/rust/html/std/simd/f32x8.t.html -share/doc/rust/html/std/simd/f64x2.t.html -share/doc/rust/html/std/simd/f64x4.t.html -share/doc/rust/html/std/simd/f64x8.t.html -share/doc/rust/html/std/simd/i16x16.t.html -share/doc/rust/html/std/simd/i16x2.t.html -share/doc/rust/html/std/simd/i16x32.t.html -share/doc/rust/html/std/simd/i16x4.t.html -share/doc/rust/html/std/simd/i16x8.t.html -share/doc/rust/html/std/simd/i32x16.t.html -share/doc/rust/html/std/simd/i32x2.t.html -share/doc/rust/html/std/simd/i32x4.t.html -share/doc/rust/html/std/simd/i32x8.t.html -share/doc/rust/html/std/simd/i64x2.t.html -share/doc/rust/html/std/simd/i64x4.t.html -share/doc/rust/html/std/simd/i64x8.t.html -share/doc/rust/html/std/simd/i8x16.t.html -share/doc/rust/html/std/simd/i8x2.t.html -share/doc/rust/html/std/simd/i8x32.t.html -share/doc/rust/html/std/simd/i8x4.t.html -share/doc/rust/html/std/simd/i8x64.t.html -share/doc/rust/html/std/simd/i8x8.t.html -share/doc/rust/html/std/simd/index.html -share/doc/rust/html/std/simd/m16x16.t.html -share/doc/rust/html/std/simd/m16x2.t.html -share/doc/rust/html/std/simd/m16x4.t.html -share/doc/rust/html/std/simd/m16x8.t.html -share/doc/rust/html/std/simd/m1x16.t.html -share/doc/rust/html/std/simd/m1x32.t.html -share/doc/rust/html/std/simd/m1x64.t.html -share/doc/rust/html/std/simd/m1x8.t.html -share/doc/rust/html/std/simd/m32x2.t.html -share/doc/rust/html/std/simd/m32x4.t.html -share/doc/rust/html/std/simd/m32x8.t.html -share/doc/rust/html/std/simd/m64x2.t.html -share/doc/rust/html/std/simd/m64x4.t.html -share/doc/rust/html/std/simd/m8x16.t.html -share/doc/rust/html/std/simd/m8x2.t.html -share/doc/rust/html/std/simd/m8x32.t.html -share/doc/rust/html/std/simd/m8x4.t.html -share/doc/rust/html/std/simd/m8x8.t.html -share/doc/rust/html/std/simd/sidebar-items.js -share/doc/rust/html/std/simd/struct.f32x16.html -share/doc/rust/html/std/simd/struct.f32x2.html -share/doc/rust/html/std/simd/struct.f32x4.html -share/doc/rust/html/std/simd/struct.f32x8.html -share/doc/rust/html/std/simd/struct.f64x2.html -share/doc/rust/html/std/simd/struct.f64x4.html -share/doc/rust/html/std/simd/struct.f64x8.html -share/doc/rust/html/std/simd/struct.i16x16.html -share/doc/rust/html/std/simd/struct.i16x2.html -share/doc/rust/html/std/simd/struct.i16x32.html -share/doc/rust/html/std/simd/struct.i16x4.html -share/doc/rust/html/std/simd/struct.i16x8.html -share/doc/rust/html/std/simd/struct.i32x16.html -share/doc/rust/html/std/simd/struct.i32x2.html -share/doc/rust/html/std/simd/struct.i32x4.html -share/doc/rust/html/std/simd/struct.i32x8.html -share/doc/rust/html/std/simd/struct.i64x2.html -share/doc/rust/html/std/simd/struct.i64x4.html -share/doc/rust/html/std/simd/struct.i64x8.html -share/doc/rust/html/std/simd/struct.i8x16.html -share/doc/rust/html/std/simd/struct.i8x2.html -share/doc/rust/html/std/simd/struct.i8x32.html -share/doc/rust/html/std/simd/struct.i8x4.html -share/doc/rust/html/std/simd/struct.i8x64.html -share/doc/rust/html/std/simd/struct.i8x8.html -share/doc/rust/html/std/simd/struct.m16x16.html -share/doc/rust/html/std/simd/struct.m16x2.html -share/doc/rust/html/std/simd/struct.m16x4.html -share/doc/rust/html/std/simd/struct.m16x8.html -share/doc/rust/html/std/simd/struct.m1x16.html -share/doc/rust/html/std/simd/struct.m1x32.html -share/doc/rust/html/std/simd/struct.m1x64.html -share/doc/rust/html/std/simd/struct.m1x8.html -share/doc/rust/html/std/simd/struct.m32x2.html -share/doc/rust/html/std/simd/struct.m32x4.html -share/doc/rust/html/std/simd/struct.m32x8.html -share/doc/rust/html/std/simd/struct.m64x2.html -share/doc/rust/html/std/simd/struct.m64x4.html -share/doc/rust/html/std/simd/struct.m8x16.html -share/doc/rust/html/std/simd/struct.m8x2.html -share/doc/rust/html/std/simd/struct.m8x32.html -share/doc/rust/html/std/simd/struct.m8x4.html -share/doc/rust/html/std/simd/struct.m8x8.html -share/doc/rust/html/std/simd/struct.u16x16.html -share/doc/rust/html/std/simd/struct.u16x2.html -share/doc/rust/html/std/simd/struct.u16x32.html -share/doc/rust/html/std/simd/struct.u16x4.html -share/doc/rust/html/std/simd/struct.u16x8.html -share/doc/rust/html/std/simd/struct.u32x16.html -share/doc/rust/html/std/simd/struct.u32x2.html -share/doc/rust/html/std/simd/struct.u32x4.html -share/doc/rust/html/std/simd/struct.u32x8.html -share/doc/rust/html/std/simd/struct.u64x2.html -share/doc/rust/html/std/simd/struct.u64x4.html -share/doc/rust/html/std/simd/struct.u64x8.html -share/doc/rust/html/std/simd/struct.u8x16.html -share/doc/rust/html/std/simd/struct.u8x2.html -share/doc/rust/html/std/simd/struct.u8x32.html -share/doc/rust/html/std/simd/struct.u8x4.html -share/doc/rust/html/std/simd/struct.u8x64.html -share/doc/rust/html/std/simd/struct.u8x8.html -share/doc/rust/html/std/simd/trait.FromBits.html -share/doc/rust/html/std/simd/trait.IntoBits.html -share/doc/rust/html/std/simd/u16x16.t.html -share/doc/rust/html/std/simd/u16x2.t.html -share/doc/rust/html/std/simd/u16x32.t.html -share/doc/rust/html/std/simd/u16x4.t.html -share/doc/rust/html/std/simd/u16x8.t.html -share/doc/rust/html/std/simd/u32x16.t.html -share/doc/rust/html/std/simd/u32x2.t.html -share/doc/rust/html/std/simd/u32x4.t.html -share/doc/rust/html/std/simd/u32x8.t.html -share/doc/rust/html/std/simd/u64x2.t.html -share/doc/rust/html/std/simd/u64x4.t.html -share/doc/rust/html/std/simd/u64x8.t.html -share/doc/rust/html/std/simd/u8x16.t.html -share/doc/rust/html/std/simd/u8x2.t.html -share/doc/rust/html/std/simd/u8x32.t.html -share/doc/rust/html/std/simd/u8x4.t.html -share/doc/rust/html/std/simd/u8x64.t.html -share/doc/rust/html/std/simd/u8x8.t.html share/doc/rust/html/std/slice/ share/doc/rust/html/std/slice.t.html share/doc/rust/html/std/slice/Chunks.t.html @@ -14406,138 +14314,14 @@ share/doc/rust/html/std/stdsimd/arch/mips/ share/doc/rust/html/std/stdsimd/arch/mips/index.html share/doc/rust/html/std/stdsimd/arch/mips64/ share/doc/rust/html/std/stdsimd/arch/mips64/index.html +share/doc/rust/html/std/stdsimd/arch/powerpc/ +share/doc/rust/html/std/stdsimd/arch/powerpc/index.html +share/doc/rust/html/std/stdsimd/arch/powerpc64/ +share/doc/rust/html/std/stdsimd/arch/powerpc64/index.html share/doc/rust/html/std/stdsimd/arch/x86/ share/doc/rust/html/std/stdsimd/arch/x86/index.html share/doc/rust/html/std/stdsimd/arch/x86_64/ share/doc/rust/html/std/stdsimd/arch/x86_64/index.html -share/doc/rust/html/std/stdsimd/simd/ -share/doc/rust/html/std/stdsimd/simd/FromBits.t.html -share/doc/rust/html/std/stdsimd/simd/IntoBits.t.html -share/doc/rust/html/std/stdsimd/simd/f32x16.t.html -share/doc/rust/html/std/stdsimd/simd/f32x2.t.html -share/doc/rust/html/std/stdsimd/simd/f32x4.t.html -share/doc/rust/html/std/stdsimd/simd/f32x8.t.html -share/doc/rust/html/std/stdsimd/simd/f64x2.t.html -share/doc/rust/html/std/stdsimd/simd/f64x4.t.html -share/doc/rust/html/std/stdsimd/simd/f64x8.t.html -share/doc/rust/html/std/stdsimd/simd/i16x16.t.html -share/doc/rust/html/std/stdsimd/simd/i16x2.t.html -share/doc/rust/html/std/stdsimd/simd/i16x32.t.html -share/doc/rust/html/std/stdsimd/simd/i16x4.t.html -share/doc/rust/html/std/stdsimd/simd/i16x8.t.html -share/doc/rust/html/std/stdsimd/simd/i32x16.t.html -share/doc/rust/html/std/stdsimd/simd/i32x2.t.html -share/doc/rust/html/std/stdsimd/simd/i32x4.t.html -share/doc/rust/html/std/stdsimd/simd/i32x8.t.html -share/doc/rust/html/std/stdsimd/simd/i64x2.t.html -share/doc/rust/html/std/stdsimd/simd/i64x4.t.html -share/doc/rust/html/std/stdsimd/simd/i64x8.t.html -share/doc/rust/html/std/stdsimd/simd/i8x16.t.html -share/doc/rust/html/std/stdsimd/simd/i8x2.t.html -share/doc/rust/html/std/stdsimd/simd/i8x32.t.html -share/doc/rust/html/std/stdsimd/simd/i8x4.t.html -share/doc/rust/html/std/stdsimd/simd/i8x64.t.html -share/doc/rust/html/std/stdsimd/simd/i8x8.t.html -share/doc/rust/html/std/stdsimd/simd/index.html -share/doc/rust/html/std/stdsimd/simd/m16x16.t.html -share/doc/rust/html/std/stdsimd/simd/m16x2.t.html -share/doc/rust/html/std/stdsimd/simd/m16x4.t.html -share/doc/rust/html/std/stdsimd/simd/m16x8.t.html -share/doc/rust/html/std/stdsimd/simd/m1x16.t.html -share/doc/rust/html/std/stdsimd/simd/m1x32.t.html -share/doc/rust/html/std/stdsimd/simd/m1x64.t.html -share/doc/rust/html/std/stdsimd/simd/m1x8.t.html -share/doc/rust/html/std/stdsimd/simd/m32x2.t.html -share/doc/rust/html/std/stdsimd/simd/m32x4.t.html -share/doc/rust/html/std/stdsimd/simd/m32x8.t.html -share/doc/rust/html/std/stdsimd/simd/m64x2.t.html -share/doc/rust/html/std/stdsimd/simd/m64x4.t.html -share/doc/rust/html/std/stdsimd/simd/m8x16.t.html -share/doc/rust/html/std/stdsimd/simd/m8x2.t.html -share/doc/rust/html/std/stdsimd/simd/m8x32.t.html -share/doc/rust/html/std/stdsimd/simd/m8x4.t.html -share/doc/rust/html/std/stdsimd/simd/m8x8.t.html -share/doc/rust/html/std/stdsimd/simd/struct.f32x16.html -share/doc/rust/html/std/stdsimd/simd/struct.f32x2.html -share/doc/rust/html/std/stdsimd/simd/struct.f32x4.html -share/doc/rust/html/std/stdsimd/simd/struct.f32x8.html -share/doc/rust/html/std/stdsimd/simd/struct.f64x2.html -share/doc/rust/html/std/stdsimd/simd/struct.f64x4.html -share/doc/rust/html/std/stdsimd/simd/struct.f64x8.html -share/doc/rust/html/std/stdsimd/simd/struct.i16x16.html -share/doc/rust/html/std/stdsimd/simd/struct.i16x2.html -share/doc/rust/html/std/stdsimd/simd/struct.i16x32.html -share/doc/rust/html/std/stdsimd/simd/struct.i16x4.html -share/doc/rust/html/std/stdsimd/simd/struct.i16x8.html -share/doc/rust/html/std/stdsimd/simd/struct.i32x16.html -share/doc/rust/html/std/stdsimd/simd/struct.i32x2.html -share/doc/rust/html/std/stdsimd/simd/struct.i32x4.html -share/doc/rust/html/std/stdsimd/simd/struct.i32x8.html -share/doc/rust/html/std/stdsimd/simd/struct.i64x2.html -share/doc/rust/html/std/stdsimd/simd/struct.i64x4.html -share/doc/rust/html/std/stdsimd/simd/struct.i64x8.html -share/doc/rust/html/std/stdsimd/simd/struct.i8x16.html -share/doc/rust/html/std/stdsimd/simd/struct.i8x2.html -share/doc/rust/html/std/stdsimd/simd/struct.i8x32.html -share/doc/rust/html/std/stdsimd/simd/struct.i8x4.html -share/doc/rust/html/std/stdsimd/simd/struct.i8x64.html -share/doc/rust/html/std/stdsimd/simd/struct.i8x8.html -share/doc/rust/html/std/stdsimd/simd/struct.m16x16.html -share/doc/rust/html/std/stdsimd/simd/struct.m16x2.html -share/doc/rust/html/std/stdsimd/simd/struct.m16x4.html -share/doc/rust/html/std/stdsimd/simd/struct.m16x8.html -share/doc/rust/html/std/stdsimd/simd/struct.m1x16.html -share/doc/rust/html/std/stdsimd/simd/struct.m1x32.html -share/doc/rust/html/std/stdsimd/simd/struct.m1x64.html -share/doc/rust/html/std/stdsimd/simd/struct.m1x8.html -share/doc/rust/html/std/stdsimd/simd/struct.m32x2.html -share/doc/rust/html/std/stdsimd/simd/struct.m32x4.html -share/doc/rust/html/std/stdsimd/simd/struct.m32x8.html -share/doc/rust/html/std/stdsimd/simd/struct.m64x2.html -share/doc/rust/html/std/stdsimd/simd/struct.m64x4.html -share/doc/rust/html/std/stdsimd/simd/struct.m8x16.html -share/doc/rust/html/std/stdsimd/simd/struct.m8x2.html -share/doc/rust/html/std/stdsimd/simd/struct.m8x32.html -share/doc/rust/html/std/stdsimd/simd/struct.m8x4.html -share/doc/rust/html/std/stdsimd/simd/struct.m8x8.html -share/doc/rust/html/std/stdsimd/simd/struct.u16x16.html -share/doc/rust/html/std/stdsimd/simd/struct.u16x2.html -share/doc/rust/html/std/stdsimd/simd/struct.u16x32.html -share/doc/rust/html/std/stdsimd/simd/struct.u16x4.html -share/doc/rust/html/std/stdsimd/simd/struct.u16x8.html -share/doc/rust/html/std/stdsimd/simd/struct.u32x16.html -share/doc/rust/html/std/stdsimd/simd/struct.u32x2.html -share/doc/rust/html/std/stdsimd/simd/struct.u32x4.html -share/doc/rust/html/std/stdsimd/simd/struct.u32x8.html -share/doc/rust/html/std/stdsimd/simd/struct.u64x2.html -share/doc/rust/html/std/stdsimd/simd/struct.u64x4.html -share/doc/rust/html/std/stdsimd/simd/struct.u64x8.html -share/doc/rust/html/std/stdsimd/simd/struct.u8x16.html -share/doc/rust/html/std/stdsimd/simd/struct.u8x2.html -share/doc/rust/html/std/stdsimd/simd/struct.u8x32.html -share/doc/rust/html/std/stdsimd/simd/struct.u8x4.html -share/doc/rust/html/std/stdsimd/simd/struct.u8x64.html -share/doc/rust/html/std/stdsimd/simd/struct.u8x8.html -share/doc/rust/html/std/stdsimd/simd/trait.FromBits.html -share/doc/rust/html/std/stdsimd/simd/trait.IntoBits.html -share/doc/rust/html/std/stdsimd/simd/u16x16.t.html -share/doc/rust/html/std/stdsimd/simd/u16x2.t.html -share/doc/rust/html/std/stdsimd/simd/u16x32.t.html -share/doc/rust/html/std/stdsimd/simd/u16x4.t.html -share/doc/rust/html/std/stdsimd/simd/u16x8.t.html -share/doc/rust/html/std/stdsimd/simd/u32x16.t.html -share/doc/rust/html/std/stdsimd/simd/u32x2.t.html -share/doc/rust/html/std/stdsimd/simd/u32x4.t.html -share/doc/rust/html/std/stdsimd/simd/u32x8.t.html -share/doc/rust/html/std/stdsimd/simd/u64x2.t.html -share/doc/rust/html/std/stdsimd/simd/u64x4.t.html -share/doc/rust/html/std/stdsimd/simd/u64x8.t.html -share/doc/rust/html/std/stdsimd/simd/u8x16.t.html -share/doc/rust/html/std/stdsimd/simd/u8x2.t.html -share/doc/rust/html/std/stdsimd/simd/u8x32.t.html -share/doc/rust/html/std/stdsimd/simd/u8x4.t.html -share/doc/rust/html/std/stdsimd/simd/u8x64.t.html -share/doc/rust/html/std/stdsimd/simd/u8x8.t.html share/doc/rust/html/std/str/ share/doc/rust/html/std/str.t.html share/doc/rust/html/std/str/Bytes.t.html @@ -14556,6 +14340,7 @@ share/doc/rust/html/std/str/RSplit.t.html share/doc/rust/html/std/str/RSplitN.t.html share/doc/rust/html/std/str/RSplitTerminator.t.html share/doc/rust/html/std/str/Split.t.html +share/doc/rust/html/std/str/SplitAsciiWhitespace.t.html share/doc/rust/html/std/str/SplitN.t.html share/doc/rust/html/std/str/SplitTerminator.t.html share/doc/rust/html/std/str/SplitWhitespace.t.html @@ -14608,6 +14393,7 @@ share/doc/rust/html/std/str/struct.RSplit.html share/doc/rust/html/std/str/struct.RSplitN.html share/doc/rust/html/std/str/struct.RSplitTerminator.html share/doc/rust/html/std/str/struct.Split.html +share/doc/rust/html/std/str/struct.SplitAsciiWhitespace.html share/doc/rust/html/std/str/struct.SplitN.html share/doc/rust/html/std/str/struct.SplitTerminator.html share/doc/rust/html/std/str/struct.SplitWhitespace.html @@ -14941,9 +14727,8 @@ share/doc/rust/html/std/task/Executor.t.html share/doc/rust/html/std/task/LocalWaker.t.html share/doc/rust/html/std/task/Poll.t.html share/doc/rust/html/std/task/SpawnErrorKind.t.html +share/doc/rust/html/std/task/SpawnLocalObjError.t.html share/doc/rust/html/std/task/SpawnObjError.t.html -share/doc/rust/html/std/task/TaskObj.t.html -share/doc/rust/html/std/task/UnsafeTask.t.html share/doc/rust/html/std/task/UnsafeWake.t.html share/doc/rust/html/std/task/Wake.t.html share/doc/rust/html/std/task/Waker.t.html @@ -14957,11 +14742,10 @@ share/doc/rust/html/std/task/sidebar-items.js share/doc/rust/html/std/task/struct.Context.html share/doc/rust/html/std/task/struct.LocalWaker.html share/doc/rust/html/std/task/struct.SpawnErrorKind.html +share/doc/rust/html/std/task/struct.SpawnLocalObjError.html share/doc/rust/html/std/task/struct.SpawnObjError.html -share/doc/rust/html/std/task/struct.TaskObj.html share/doc/rust/html/std/task/struct.Waker.html share/doc/rust/html/std/task/trait.Executor.html -share/doc/rust/html/std/task/trait.UnsafeTask.html share/doc/rust/html/std/task/trait.UnsafeWake.html share/doc/rust/html/std/task/trait.Wake.html share/doc/rust/html/std/thread/ @@ -15089,6 +14873,13 @@ share/doc/rust/html/std/write.m.html share/doc/rust/html/std/writeln.m.html share/doc/rust/html/std_unicode/ share/doc/rust/html/std_unicode/all.html +share/doc/rust/html/std_unicode/conversions/ +share/doc/rust/html/std_unicode/conversions/fn.to_lower.html +share/doc/rust/html/std_unicode/conversions/fn.to_upper.html +share/doc/rust/html/std_unicode/conversions/index.html +share/doc/rust/html/std_unicode/conversions/sidebar-items.js +share/doc/rust/html/std_unicode/conversions/to_lower.v.html +share/doc/rust/html/std_unicode/conversions/to_upper.v.html share/doc/rust/html/std_unicode/derived_property/ share/doc/rust/html/std_unicode/derived_property/Case_Ignorable.v.html share/doc/rust/html/std_unicode/derived_property/Cased.v.html @@ -15222,12 +15013,14 @@ share/doc/rust/html/unstable-book/index.html share/doc/rust/html/unstable-book/language-features/ share/doc/rust/html/unstable-book/language-features.html share/doc/rust/html/unstable-book/language-features/aarch64-target-feature.html +share/doc/rust/html/unstable-book/language-features/abi-amdgpu-kernel.html share/doc/rust/html/unstable-book/language-features/abi-msp430-interrupt.html share/doc/rust/html/unstable-book/language-features/abi-ptx.html share/doc/rust/html/unstable-book/language-features/abi-thiscall.html share/doc/rust/html/unstable-book/language-features/abi-unadjusted.html share/doc/rust/html/unstable-book/language-features/abi-vectorcall.html share/doc/rust/html/unstable-book/language-features/abi-x86-interrupt.html +share/doc/rust/html/unstable-book/language-features/alloc-error-handler.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 @@ -15236,6 +15029,7 @@ share/doc/rust/html/unstable-book/language-features/arbitrary-self-types.html share/doc/rust/html/unstable-book/language-features/arm-target-feature.html share/doc/rust/html/unstable-book/language-features/asm.html share/doc/rust/html/unstable-book/language-features/associated-type-defaults.html +share/doc/rust/html/unstable-book/language-features/async-await.html share/doc/rust/html/unstable-book/language-features/attr-literals.html share/doc/rust/html/unstable-book/language-features/avx512-target-feature.html share/doc/rust/html/unstable-book/language-features/box-patterns.html @@ -15263,11 +15057,13 @@ 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/exhaustive-patterns.html +share/doc/rust/html/unstable-book/language-features/existential-type.html share/doc/rust/html/unstable-book/language-features/extern-absolute-paths.html share/doc/rust/html/unstable-book/language-features/extern-in-paths.html share/doc/rust/html/unstable-book/language-features/extern-prelude.html share/doc/rust/html/unstable-book/language-features/extern-types.html share/doc/rust/html/unstable-book/language-features/external-doc.html +share/doc/rust/html/unstable-book/language-features/format-args-nl.html share/doc/rust/html/unstable-book/language-features/fundamental.html share/doc/rust/html/unstable-book/language-features/generators.html share/doc/rust/html/unstable-book/language-features/generic-associated-types.html @@ -15276,7 +15072,9 @@ share/doc/rust/html/unstable-book/language-features/hexagon-target-feature.html share/doc/rust/html/unstable-book/language-features/if-while-or-patterns.html share/doc/rust/html/unstable-book/language-features/in-band-lifetimes.html share/doc/rust/html/unstable-book/language-features/infer-outlives-requirements.html +share/doc/rust/html/unstable-book/language-features/infer-static-outlives-requirements.html share/doc/rust/html/unstable-book/language-features/intrinsics.html +share/doc/rust/html/unstable-book/language-features/irrefutable-let-patterns.html share/doc/rust/html/unstable-book/language-features/label-break-value.html share/doc/rust/html/unstable-book/language-features/lang-items.html share/doc/rust/html/unstable-book/language-features/link-args.html @@ -15318,7 +15116,6 @@ share/doc/rust/html/unstable-book/language-features/proc-macro-gen.html share/doc/rust/html/unstable-book/language-features/proc-macro-mod.html share/doc/rust/html/unstable-book/language-features/proc-macro-non-items.html share/doc/rust/html/unstable-book/language-features/proc-macro-path-invoc.html -share/doc/rust/html/unstable-book/language-features/proc-macro.html share/doc/rust/html/unstable-book/language-features/profiler-runtime.html share/doc/rust/html/unstable-book/language-features/quote.html share/doc/rust/html/unstable-book/language-features/raw-identifiers.html @@ -15341,6 +15138,7 @@ share/doc/rust/html/unstable-book/language-features/structural-match.html share/doc/rust/html/unstable-book/language-features/tbm-target-feature.html share/doc/rust/html/unstable-book/language-features/thread-local.html share/doc/rust/html/unstable-book/language-features/tool-attributes.html +share/doc/rust/html/unstable-book/language-features/tool-lints.html share/doc/rust/html/unstable-book/language-features/trace-macros.html share/doc/rust/html/unstable-book/language-features/trait-alias.html share/doc/rust/html/unstable-book/language-features/trivial-bounds.html @@ -15352,8 +15150,6 @@ share/doc/rust/html/unstable-book/language-features/untagged-unions.html share/doc/rust/html/unstable-book/language-features/unwind-attributes.html share/doc/rust/html/unstable-book/language-features/use-extern-macros.html share/doc/rust/html/unstable-book/language-features/used.html -share/doc/rust/html/unstable-book/language-features/wasm-custom-section.html -share/doc/rust/html/unstable-book/language-features/wasm-import-module.html share/doc/rust/html/unstable-book/library-features/ share/doc/rust/html/unstable-book/library-features.html share/doc/rust/html/unstable-book/library-features/align-offset.html @@ -15364,8 +15160,10 @@ share/doc/rust/html/unstable-book/library-features/alloc-system.html share/doc/rust/html/unstable-book/library-features/alloc.html share/doc/rust/html/unstable-book/library-features/allocator-api.html share/doc/rust/html/unstable-book/library-features/array-error-internals.html +share/doc/rust/html/unstable-book/library-features/as-cell.html share/doc/rust/html/unstable-book/library-features/ascii-ctype.html share/doc/rust/html/unstable-book/library-features/atomic-min-max.html +share/doc/rust/html/unstable-book/library-features/await-macro.html share/doc/rust/html/unstable-book/library-features/box-into-raw-non-null.html share/doc/rust/html/unstable-book/library-features/bufreader-buffer.html share/doc/rust/html/unstable-book/library-features/bufreader-is-empty.html @@ -15413,6 +15211,7 @@ share/doc/rust/html/unstable-book/library-features/fn-traits.html share/doc/rust/html/unstable-book/library-features/fnbox.html share/doc/rust/html/unstable-book/library-features/future-atomic-orderings.html share/doc/rust/html/unstable-book/library-features/futures-api.html +share/doc/rust/html/unstable-book/library-features/gen-future.html share/doc/rust/html/unstable-book/library-features/generator-trait.html share/doc/rust/html/unstable-book/library-features/get-type-id.html share/doc/rust/html/unstable-book/library-features/hashmap-internals.html @@ -15424,7 +15223,6 @@ share/doc/rust/html/unstable-book/library-features/io.html share/doc/rust/html/unstable-book/library-features/ip-constructors.html share/doc/rust/html/unstable-book/library-features/ip.html share/doc/rust/html/unstable-book/library-features/iterator-find-map.html -share/doc/rust/html/unstable-book/library-features/iterator-flatten.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 share/doc/rust/html/unstable-book/library-features/libstd-thread-internals.html @@ -15437,6 +15235,7 @@ share/doc/rust/html/unstable-book/library-features/no-more-cas.html share/doc/rust/html/unstable-book/library-features/no-panic-pow.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/option-replace.html share/doc/rust/html/unstable-book/library-features/option-xor.html share/doc/rust/html/unstable-book/library-features/panic-abort.html share/doc/rust/html/unstable-book/library-features/panic-info-message.html @@ -15445,7 +15244,11 @@ share/doc/rust/html/unstable-book/library-features/panic-unwind.html share/doc/rust/html/unstable-book/library-features/pattern.html share/doc/rust/html/unstable-book/library-features/pin.html share/doc/rust/html/unstable-book/library-features/print-internals.html +share/doc/rust/html/unstable-book/library-features/proc-macro-diagnostic.html share/doc/rust/html/unstable-book/library-features/proc-macro-internals.html +share/doc/rust/html/unstable-book/library-features/proc-macro-quote.html +share/doc/rust/html/unstable-book/library-features/proc-macro-raw-ident.html +share/doc/rust/html/unstable-book/library-features/proc-macro-span.html share/doc/rust/html/unstable-book/library-features/process-exitcode-placeholder.html share/doc/rust/html/unstable-book/library-features/process-internals.html share/doc/rust/html/unstable-book/library-features/profiler-runtime-lib.html @@ -15454,8 +15257,8 @@ share/doc/rust/html/unstable-book/library-features/ptr-offset-from.html share/doc/rust/html/unstable-book/library-features/ptr-wrapping-offset-from.html share/doc/rust/html/unstable-book/library-features/range-contains.html share/doc/rust/html/unstable-book/library-features/range-is-empty.html +share/doc/rust/html/unstable-book/library-features/raw-vec-internals.html share/doc/rust/html/unstable-book/library-features/raw.html -share/doc/rust/html/unstable-book/library-features/rc-downcast.html share/doc/rust/html/unstable-book/library-features/read-initializer.html share/doc/rust/html/unstable-book/library-features/refcell-map-split.html share/doc/rust/html/unstable-book/library-features/refcell-replace-swap.html @@ -15464,6 +15267,7 @@ share/doc/rust/html/unstable-book/library-features/reverse-bits.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/rustc-stack-internals.html +share/doc/rust/html/unstable-book/library-features/rw-exact-all-at.html share/doc/rust/html/unstable-book/library-features/sanitizer-runtime-lib.html share/doc/rust/html/unstable-book/library-features/set-stdio.html share/doc/rust/html/unstable-book/library-features/shrink-to.html @@ -15473,6 +15277,7 @@ share/doc/rust/html/unstable-book/library-features/slice-index-methods.html share/doc/rust/html/unstable-book/library-features/slice-internals.html share/doc/rust/html/unstable-book/library-features/slice-sort-by-cached-key.html share/doc/rust/html/unstable-book/library-features/sort-internals.html +share/doc/rust/html/unstable-book/library-features/split-ascii-whitespace.html share/doc/rust/html/unstable-book/library-features/std-internals.html share/doc/rust/html/unstable-book/library-features/stdsimd.html share/doc/rust/html/unstable-book/library-features/step-trait.html