Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

rust1.88-1.88.0-1.1 RPM for i586

From OpenSuSE Ports Tumbleweed for i586

Name: rust1.88 Distribution: openSUSE Tumbleweed
Version: 1.88.0 Vendor: openSUSE
Release: 1.1 Build date: Wed Jul 2 03:06:05 2025
Group: Development/Languages/Rust Build host: reproducible
Size: 546239003 Source RPM: rust1.88-1.88.0-1.1.nosrc.rpm
Packager: http://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.

Provides

Requires

License

Apache-2.0 OR MIT

Changelog

* Wed Jul 02 2025 William Brown <william.brown@suse.com>
  - bsc#1243588 - Update changelog to remove hyphen as a line break for source validator
* Fri Jun 27 2025 William Brown <william.brown@suse.com>
  Version 1.88.0 (2025-06-26)
    [#]# Language
  - [Stabilize `#![feature(let_chains)]` in the 2024 edition.](https://github.com/rust-lang/rust/pull/132833)
    This feature allows `&&`-chaining `let` statements inside `if` and `while`, allowing intermixture with boolean expressions. The patterns inside the `let` sub-expressions can be irrefutable or refutable.
  - [Stabilize `#![feature(naked_functions)]`.](https://github.com/rust-lang/rust/pull/134213)
    Naked functions allow writing functions with no compiler-generated epilogue and prologue, allowing full control over the generated assembly for a particular function.
  - [Stabilize `#![feature(cfg_boolean_literals)]`.](https://github.com/rust-lang/rust/pull/138632)
    This allows using boolean literals as `cfg` predicates, e.g. `#[cfg(true)]` and `#[cfg(false)]`.
  - [Fully de-stabilize the `#[bench]` attribute](https://github.com/rust-lang/rust/pull/134273). Usage of `#[bench]` without `#![feature(custom_test_frameworks)]` already triggered a deny-by-default future-incompatibility lint since Rust 1.77, but will now become a hard error.
  - [Add warn-by-default `dangerous_implicit_autorefs` lint against implicit autoref of raw pointer dereference.](https://github.com/rust-lang/rust/pull/123239)
    The lint [will be bumped to deny-by-default](https://github.com/rust-lang/rust/pull/141661) in the next version of Rust.
  - [Add `invalid_null_arguments` lint to prevent invalid usage of null pointers.](https://github.com/rust-lang/rust/pull/119220)
    This lint is uplifted from `clippy::invalid_null_ptr_usage`.
  - [Change trait impl candidate preference for builtin impls and trivial where-clauses.](https://github.com/rust-lang/rust/pull/138176)
  - [Check types of generic const parameter defaults](https://github.com/rust-lang/rust/pull/139646)
    [#]# Compiler
  - [Stabilize `-Cdwarf-version` for selecting the version of DWARF debug information to generate.](https://github.com/rust-lang/rust/pull/136926)
    [#]# Platform Support
  - [Demote `i686-pc-windows-gnu` to Tier 2.](https://blog.rust-lang.org/2025/05/26/demoting-i686-pc-windows-gnu/)
    Refer to Rust's [platform support page][platform-support-doc]
    for more information on Rust's tiered platform support.
    [platform-support-doc]: https://doc.rust-lang.org/rustc/platform-support.html
    [#]# Libraries
  - [Remove backticks from `#[should_panic]` test failure message.](https://github.com/rust-lang/rust/pull/136160)
  - [Guarantee that `[T; N]::from_fn` is generated in order of increasing indices.](https://github.com/rust-lang/rust/pull/139099), for those passing it a stateful closure.
  - [The libtest flag `--nocapture` is deprecated in favor of the more consistent `--no-capture` flag.](https://github.com/rust-lang/rust/pull/139224)
  - [Guarantee that `{float}::NAN` is a quiet NaN.](https://github.com/rust-lang/rust/pull/139483)
    [#]# Stabilized APIs
  - [`Cell::update`](https://doc.rust-lang.org/stable/std/cell/struct.Cell.html#method.update)
  - [`impl Default for *const T`](https://doc.rust-lang.org/nightly/std/primitive.pointer.html#impl-Default-for-*const+T)
  - [`impl Default for *mut T`](https://doc.rust-lang.org/nightly/std/primitive.pointer.html#impl-Default-for-*mut+T)
  - [`HashMap::extract_if`](https://doc.rust-lang.org/stable/std/collections/struct.HashMap.html#method.extract_if)
  - [`HashSet::extract_if`](https://doc.rust-lang.org/stable/std/collections/struct.HashSet.html#method.extract_if)
  - [`proc_macro::Span::line`](https://doc.rust-lang.org/stable/proc_macro/struct.Span.html#method.line)
  - [`proc_macro::Span::column`](https://doc.rust-lang.org/stable/proc_macro/struct.Span.html#method.column)
  - [`proc_macro::Span::start`](https://doc.rust-lang.org/stable/proc_macro/struct.Span.html#method.start)
  - [`proc_macro::Span::end`](https://doc.rust-lang.org/stable/proc_macro/struct.Span.html#method.end)
  - [`proc_macro::Span::file`](https://doc.rust-lang.org/stable/proc_macro/struct.Span.html#method.file)
  - [`proc_macro::Span::local_file`](https://doc.rust-lang.org/stable/proc_macro/struct.Span.html#method.local_file)
    These previously stable APIs are now stable in const contexts:
  - [`NonNull<T>::replace`](https://doc.rust-lang.org/stable/std/ptr/struct.NonNull.html#method.replace)
  - [`<*mut T>::replace`](https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.replace)
  - [`std::ptr::swap_nonoverlapping`](https://github.com/rust-lang/rust/pull/137280)
  - [`Cell::{replace, get, get_mut, from_mut, as_slice_of_cells}`](https://github.com/rust-lang/rust/pull/137928)
    [#]# Cargo
  - [Stabilize automatic garbage collection.](https://github.com/rust-lang/cargo/pull/14287/)
  - [use `zlib-rs` for gzip compression in rust code](https://github.com/rust-lang/cargo/pull/15417/)
    [#]# Rustdoc
  - [Doctests can be ignored based on target names using `ignore-*` attributes.](https://github.com/rust-lang/rust/pull/137096)
  - [Stabilize the `--test-runtool` and `--test-runtool-arg` CLI options to specify a program (like qemu) and its arguments to run a doctest.](https://github.com/rust-lang/rust/pull/137096)
    [#]# Compatibility Notes
  - [Finish changing the internal representation of pasted tokens](https://github.com/rust-lang/rust/pull/124141). Certain invalid declarative macros that were previously accepted in obscure circumstances are now correctly rejected by the compiler. Use of a `tt` fragment specifier can often fix these macros.
  - [Fully de-stabilize the `#[bench]` attribute](https://github.com/rust-lang/rust/pull/134273). Usage of `#[bench]` without `#![feature(custom_test_frameworks)]` already triggered a deny-by-default future-incompatibility lint since Rust 1.77, but will now become a hard error.
  - [Fix borrow checking some always-true patterns.](https://github.com/rust-lang/rust/pull/139042)
    The borrow checker was overly permissive in some cases, allowing programs that shouldn't have compiled.
  - [Update the minimum external LLVM to 19.](https://github.com/rust-lang/rust/pull/139275)
  - [Make it a hard error to use a vector type with a non-Rust ABI without enabling the required target feature.](https://github.com/rust-lang/rust/pull/139309)

Files

/usr/bin/cargo-clippy
/usr/bin/cargo-fmt
/usr/bin/clippy-driver
/usr/bin/rust-gdb
/usr/bin/rust-gdbgui
/usr/bin/rust-lldb
/usr/bin/rustc
/usr/bin/rustdoc
/usr/bin/rustfmt
/usr/lib/librustc_driver-221461b2bf9793b4.so
/usr/lib/rustlib
/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/lib/rustlib/i686-unknown-linux-gnu
/usr/lib/rustlib/i686-unknown-linux-gnu/bin
/usr/lib/rustlib/i686-unknown-linux-gnu/bin/FileCheck
/usr/lib/rustlib/i686-unknown-linux-gnu/bin/gcc-ld
/usr/lib/rustlib/i686-unknown-linux-gnu/bin/gcc-ld/ld.lld
/usr/lib/rustlib/i686-unknown-linux-gnu/bin/gcc-ld/ld64.lld
/usr/lib/rustlib/i686-unknown-linux-gnu/bin/gcc-ld/lld-link
/usr/lib/rustlib/i686-unknown-linux-gnu/bin/gcc-ld/wasm-ld
/usr/lib/rustlib/i686-unknown-linux-gnu/bin/rust-lld
/usr/lib/rustlib/i686-unknown-linux-gnu/bin/rust-objcopy
/usr/lib/rustlib/i686-unknown-linux-gnu/lib
/usr/lib/rustlib/i686-unknown-linux-gnu/lib/libaddr2line-9fb1e972cb7cf05b.rlib
/usr/lib/rustlib/i686-unknown-linux-gnu/lib/libadler2-138a4792435e6c8a.rlib
/usr/lib/rustlib/i686-unknown-linux-gnu/lib/liballoc-233c1c785b0dd33d.rlib
/usr/lib/rustlib/i686-unknown-linux-gnu/lib/libcfg_if-05fc822ffa427e19.rlib
/usr/lib/rustlib/i686-unknown-linux-gnu/lib/libcompiler_builtins-56dc81e13877044a.rlib
/usr/lib/rustlib/i686-unknown-linux-gnu/lib/libcore-7a1575a22b4047af.rlib
/usr/lib/rustlib/i686-unknown-linux-gnu/lib/libgetopts-f001c44bf4cf6468.rlib
/usr/lib/rustlib/i686-unknown-linux-gnu/lib/libgimli-bdb32dacbd4b211c.rlib
/usr/lib/rustlib/i686-unknown-linux-gnu/lib/libhashbrown-bcbe8c78f337b67f.rlib
/usr/lib/rustlib/i686-unknown-linux-gnu/lib/liblibc-50e5783cd4d9a87b.rlib
/usr/lib/rustlib/i686-unknown-linux-gnu/lib/libmemchr-3117ef3984bba58d.rlib
/usr/lib/rustlib/i686-unknown-linux-gnu/lib/libminiz_oxide-488aabbbcd16067b.rlib
/usr/lib/rustlib/i686-unknown-linux-gnu/lib/libobject-0a648338315d0e5f.rlib
/usr/lib/rustlib/i686-unknown-linux-gnu/lib/libpanic_abort-b9a03df70271cf74.rlib
/usr/lib/rustlib/i686-unknown-linux-gnu/lib/libpanic_unwind-de82d409f3f5f12c.rlib
/usr/lib/rustlib/i686-unknown-linux-gnu/lib/libproc_macro-995a9fcd88a856c0.rlib
/usr/lib/rustlib/i686-unknown-linux-gnu/lib/libprofiler_builtins-8310fab69a36b54b.rlib
/usr/lib/rustlib/i686-unknown-linux-gnu/lib/librustc_demangle-34517ebb9ef251c2.rlib
/usr/lib/rustlib/i686-unknown-linux-gnu/lib/librustc_literal_escaper-5e8362fca952d2b4.rlib
/usr/lib/rustlib/i686-unknown-linux-gnu/lib/librustc_std_workspace_alloc-8fb390b1fa48c545.rlib
/usr/lib/rustlib/i686-unknown-linux-gnu/lib/librustc_std_workspace_core-cd244755caefc784.rlib
/usr/lib/rustlib/i686-unknown-linux-gnu/lib/librustc_std_workspace_std-298fe7597e751ef2.rlib
/usr/lib/rustlib/i686-unknown-linux-gnu/lib/libstd-1b75ee3db20b890a.rlib
/usr/lib/rustlib/i686-unknown-linux-gnu/lib/libstd-1b75ee3db20b890a.so
/usr/lib/rustlib/i686-unknown-linux-gnu/lib/libstd_detect-283288cf169be631.rlib
/usr/lib/rustlib/i686-unknown-linux-gnu/lib/libsysroot-9571eab79a83e885.rlib
/usr/lib/rustlib/i686-unknown-linux-gnu/lib/libtest-81422850f65b0148.rlib
/usr/lib/rustlib/i686-unknown-linux-gnu/lib/libunicode_width-252822f6846d20a1.rlib
/usr/lib/rustlib/i686-unknown-linux-gnu/lib/libunwind-cf805e60b1edb075.rlib
/usr/share/doc/packages/rust1.88
/usr/share/doc/packages/rust1.88/CONTRIBUTING.md
/usr/share/doc/packages/rust1.88/README.md
/usr/share/doc/packages/rust1.88/RELEASES.md
/usr/share/licenses/rust1.88
/usr/share/licenses/rust1.88/COPYRIGHT
/usr/share/licenses/rust1.88/LICENSE-APACHE
/usr/share/licenses/rust1.88/LICENSE-MIT
/usr/share/man/man1/rustc.1.gz
/usr/share/man/man1/rustdoc.1.gz


Generated by rpm2html 1.8.1

Fabrice Bellet, Mon Jul 7 00:31:59 2025