Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: rust1.69 | Distribution: openSUSE Step 15 |
Version: 1.69.0 | Vendor: openSUSE |
Release: 9.4.1 | Build date: Sat Apr 29 06:26:45 2023 |
Group: Development/Languages/Rust | Build host: obs-arm-5 |
Size: 340557208 | Source RPM: rust1.69-1.69.0-9.4.1.nosrc.rpm |
Packager: https://bugs.opensuse.org | |
Url: https://www.rust-lang.org | |
Summary: A systems programming language |
Rust is a systems programming language focused on three goals: safety, speed, and concurrency. It maintains these goals without having a garbage collector, making it a useful language for a number of use cases other languages are not good at: embedding in other languages, programs with specific space and time requirements, and writing low-level code, like device drivers and operating systems. It improves on current languages targeting this space by having a number of compile-time safety checks that produce no runtime overhead, while eliminating all data races. Rust also aims to achieve "zero-cost abstractions", even though some of these abstractions feel like those of a high-level language. Even then, Rust still allows precise control like a low-level language would.
Apache-2.0 OR MIT
* Wed Apr 26 2023 william.brown@suse.com - Disable fdupes on SLE/Leap due to incorrect debuginfo extraction * Fri Apr 21 2023 william.brown@suse.com Version 1.69.0 (2023-04-20) Language -------- - [Deriving built-in traits on packed structs works with `Copy` fields.](https://github.com/rust-lang/rust/pull/104429/) - [Stabilize the `cmpxchg16b` target feature on x86 and x86_64.](https://github.com/rust-lang/rust/pull/106774/) - [Improve analysis of trait bounds for associated types.](https://github.com/rust-lang/rust/pull/103695/) - [Allow associated types to be used as union fields.](https://github.com/rust-lang/rust/pull/106938/) - [Allow `Self: Autotrait` bounds on dyn-safe trait methods.](https://github.com/rust-lang/rust/pull/107082/) - [Treat `str` as containing `[u8]` for auto trait purposes.](https://github.com/rust-lang/rust/pull/107941/) Compiler -------- - [Upgrade `*-pc-windows-gnu` on CI to mingw-w64 v10 and GCC 12.2.](https://github.com/rust-lang/rust/pull/100178/) - [Rework min_choice algorithm of member constraints.](https://github.com/rust-lang/rust/pull/105300/) - [Support `true` and `false` as boolean flags in compiler arguments.](https://github.com/rust-lang/rust/pull/107043/) - [Default `repr(C)` enums to `c_int` size.](https://github.com/rust-lang/rust/pull/107592/) Libraries --------- - [Implement the unstable `DispatchFromDyn` for cell types, allowing downstream experimentation with custom method receivers.](https://github.com/rust-lang/rust/pull/97373/) - [Document that `fmt::Arguments::as_str()` may return `Some(_)` in more cases after optimization, subject to change.](https://github.com/rust-lang/rust/pull/106823/) - [Implement `AsFd` and `AsRawFd` for `Rc`.](https://github.com/rust-lang/rust/pull/107317/) Stabilized APIs - [`CStr::from_bytes_until_nul`](https://doc.rust-lang.org/stable/core/ffi/struct.CStr.html#method.from_bytes_until_nul) - [`core::ffi::FromBytesUntilNulError`](https://doc.rust-lang.org/stable/core/ffi/struct.FromBytesUntilNulError.html) These APIs are now stable in const contexts: - [`SocketAddr::new`](https://doc.rust-lang.org/stable/std/net/enum.SocketAddr.html#method.new) - [`SocketAddr::ip`](https://doc.rust-lang.org/stable/std/net/enum.SocketAddr.html#method.ip) - [`SocketAddr::port`](https://doc.rust-lang.org/stable/std/net/enum.SocketAddr.html#method.port) - [`SocketAddr::is_ipv4`](https://doc.rust-lang.org/stable/std/net/enum.SocketAddr.html#method.is_ipv4) - [`SocketAddr::is_ipv6`](https://doc.rust-lang.org/stable/std/net/enum.SocketAddr.html#method.is_ipv6) - [`SocketAddrV4::new`](https://doc.rust-lang.org/stable/std/net/struct.SocketAddrV4.html#method.new) - [`SocketAddrV4::ip`](https://doc.rust-lang.org/stable/std/net/struct.SocketAddrV4.html#method.ip) - [`SocketAddrV4::port`](https://doc.rust-lang.org/stable/std/net/struct.SocketAddrV4.html#method.port) - [`SocketAddrV6::new`](https://doc.rust-lang.org/stable/std/net/struct.SocketAddrV6.html#method.new) - [`SocketAddrV6::ip`](https://doc.rust-lang.org/stable/std/net/struct.SocketAddrV6.html#method.ip) - [`SocketAddrV6::port`](https://doc.rust-lang.org/stable/std/net/struct.SocketAddrV6.html#method.port) - [`SocketAddrV6::flowinfo`](https://doc.rust-lang.org/stable/std/net/struct.SocketAddrV6.html#method.flowinfo) - [`SocketAddrV6::scope_id`](https://doc.rust-lang.org/stable/std/net/struct.SocketAddrV6.html#method.scope_id) Cargo ----- - [Cargo now suggests `cargo fix` or `cargo clippy --fix` when compilation warnings are auto-fixable.](https://github.com/rust-lang/cargo/pull/11558/) - [Cargo now suggests `cargo add` if you try to install a library crate.](https://github.com/rust-lang/cargo/pull/11410/) - [Cargo now sets the `CARGO_BIN_NAME` environment variable also for binary examples.](https://github.com/rust-lang/cargo/pull/11705/) Rustdoc ----- - [Vertically compact trait bound formatting.](https://github.com/rust-lang/rust/pull/102842/) - [Only include stable lints in `rustdoc::all` group.](https://github.com/rust-lang/rust/pull/106316/) - [Compute maximum Levenshtein distance based on the query.](https://github.com/rust-lang/rust/pull/107141/) - [Remove inconsistently-present sidebar tooltips.](https://github.com/rust-lang/rust/pull/107490/) - [Search by macro when query ends with `!`.](https://github.com/rust-lang/rust/pull/108143/) Compatibility Notes - [The `rust-analysis` component from `rustup` now only contains a warning placeholder.](https://github.com/rust-lang/rust/pull/101841/) This was primarily intended for RLS, and the corresponding `-Zsave-analysis` flag has been removed from the compiler as well. - [Unaligned references to packed fields are now a hard error.](https://github.com/rust-lang/rust/pull/102513/) This has been a warning since 1.53, and denied by default with a future-compatibility warning since 1.62. - [Update the minimum external LLVM to 14.](https://github.com/rust-lang/rust/pull/107573/) - [Cargo now emits errors on invalid characters in a registry token.](https://github.com/rust-lang/cargo/pull/11600/) - [When `default-features` is set to false of a workspace dependency, and an inherited dependency of a member has `default-features = true`, Cargo will enable default features of that dependency.](https://github.com/rust-lang/cargo/pull/11409/) - [Cargo denies `CARGO_HOME` in the `[env]` configuration table. Cargo itself doesn't pick up this value, but recursive calls to cargo would, which was not intended.](https://github.com/rust-lang/cargo/pull/11644/) - [Debuginfo for build dependencies is now off if not explicitly set. This is expected to improve the overall build time.](https://github.com/rust-lang/cargo/pull/11252/)
/usr/bin/rust-gdb /usr/bin/rust-gdbgui /usr/bin/rust-lldb /usr/bin/rustc /usr/bin/rustdoc /usr/lib/cargo-credential-1password /usr/lib/librustc_driver-fcaa8523d0aef62f.so /usr/lib/libstd-26948609c1d3fe4e.so /usr/lib/libtest-f505757a1636f350.so /usr/lib/rustlib /usr/lib/rustlib/armv7-unknown-linux-gnueabihf /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/bin /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/bin/FileCheck /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/bin/gcc-ld /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/bin/gcc-ld/ld.lld /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/bin/gcc-ld/ld64.lld /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/bin/gcc-ld/lld-link /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/bin/gcc-ld/wasm-ld /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/bin/rust-lld /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/lib /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/lib/libaddr2line-a309a01498c95bc7.rlib /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/lib/libadler-0b73c43e52b5b9a3.rlib /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/lib/liballoc-8d6cac5946e55e72.rlib /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/lib/libcfg_if-afb617b5cc01dce2.rlib /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/lib/libcompiler_builtins-722bb85c06c0f6ef.rlib /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/lib/libcore-78a563a74c9a1baa.rlib /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/lib/libgetopts-8dd68d4349bd26f9.rlib /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/lib/libgimli-0d189a2771335f0b.rlib /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/lib/libhashbrown-5969569b75da3b65.rlib /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/lib/liblibc-91a41d31e136c445.rlib /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/lib/libmemchr-8b6c3340a2f7ecc2.rlib /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/lib/libminiz_oxide-747a56006572a363.rlib /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/lib/libobject-05eb10a652cddc77.rlib /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/lib/libpanic_abort-5e46aee7678adc74.rlib /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/lib/libpanic_unwind-9d8544df04b2cb7a.rlib /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/lib/libproc_macro-ad37900fd32a90d2.rlib /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/lib/librustc_demangle-74506d3e3a1093d0.rlib /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/lib/librustc_std_workspace_alloc-7771c8c1612a3d45.rlib /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/lib/librustc_std_workspace_core-98981a0c1663c2af.rlib /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/lib/librustc_std_workspace_std-5ba5c54712586bd7.rlib /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/lib/libstd-26948609c1d3fe4e.rlib /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/lib/libstd-26948609c1d3fe4e.so /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/lib/libstd_detect-4626586eeb24d2ac.rlib /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/lib/libtest-f505757a1636f350.rlib /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/lib/libtest-f505757a1636f350.so /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/lib/libunicode_width-c2ae136594f8320b.rlib /usr/lib/rustlib/armv7-unknown-linux-gnueabihf/lib/libunwind-4940afc8d2ff396e.rlib /usr/lib/rustlib/etc /usr/lib/rustlib/etc/gdb_load_rust_pretty_printers.py /usr/lib/rustlib/etc/gdb_lookup.py /usr/lib/rustlib/etc/gdb_providers.py /usr/lib/rustlib/etc/lldb_commands /usr/lib/rustlib/etc/lldb_lookup.py /usr/lib/rustlib/etc/lldb_providers.py /usr/lib/rustlib/etc/rust_types.py /usr/share/doc/packages/rust1.69 /usr/share/doc/packages/rust1.69/CONTRIBUTING.md /usr/share/doc/packages/rust1.69/README.md /usr/share/doc/packages/rust1.69/RELEASES.md /usr/share/licenses/rust1.69 /usr/share/licenses/rust1.69/COPYRIGHT /usr/share/licenses/rust1.69/LICENSE-APACHE /usr/share/licenses/rust1.69/LICENSE-MIT /usr/share/man/man1/rustc.1.gz /usr/share/man/man1/rustdoc.1.gz
Generated by rpm2html 1.8.1
Fabrice Bellet, Sun Mar 9 13:55:41 2025