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-160000.1.1 RPM for x86_64

From OpenSuSE Leap 16.0 for x86_64

Name: rust1.88 Distribution: SUSE Linux 16
Version: 1.88.0 Vendor: SUSE LLC <https://www.suse.com/>
Release: 160000.1.1 Build date: Wed Jul 2 03:06:05 2025
Group: Development/Languages/Rust Build host: reproducible
Size: 723268035 Source RPM: rust1.88-1.88.0-160000.1.1.nosrc.rpm
Packager: https://www.suse.com/
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@suse.com
  - bsc#1243588 - Update changelog to remove hyphen as a line break for source validator
* Fri Jun 27 2025 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-1e6101e1f413dee0.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/wasm32-unknown-unknown
/usr/lib/rustlib/wasm32-unknown-unknown/lib
/usr/lib/rustlib/wasm32-unknown-unknown/lib/libaddr2line-ecc675015c5bdfcc.rlib
/usr/lib/rustlib/wasm32-unknown-unknown/lib/libadler2-ef06b2922c968a9f.rlib
/usr/lib/rustlib/wasm32-unknown-unknown/lib/liballoc-5d0c8d54310f6384.rlib
/usr/lib/rustlib/wasm32-unknown-unknown/lib/libcfg_if-8a87fd63c78f693e.rlib
/usr/lib/rustlib/wasm32-unknown-unknown/lib/libcompiler_builtins-b37e10809762ab9a.rlib
/usr/lib/rustlib/wasm32-unknown-unknown/lib/libcore-09dc421d9e406690.rlib
/usr/lib/rustlib/wasm32-unknown-unknown/lib/libdlmalloc-b354fa5e5cf29dc9.rlib
/usr/lib/rustlib/wasm32-unknown-unknown/lib/libgetopts-8bae3b2118d43f16.rlib
/usr/lib/rustlib/wasm32-unknown-unknown/lib/libgimli-0545e1387e38c8ac.rlib
/usr/lib/rustlib/wasm32-unknown-unknown/lib/libhashbrown-85e2783563a7dd14.rlib
/usr/lib/rustlib/wasm32-unknown-unknown/lib/liblibc-fe4ac8a848d572f8.rlib
/usr/lib/rustlib/wasm32-unknown-unknown/lib/libmemchr-344e5f2e35f58ba0.rlib
/usr/lib/rustlib/wasm32-unknown-unknown/lib/libminiz_oxide-728220e3c408b506.rlib
/usr/lib/rustlib/wasm32-unknown-unknown/lib/libobject-1cae6dc63929b450.rlib
/usr/lib/rustlib/wasm32-unknown-unknown/lib/libpanic_abort-807f560ac1584ab3.rlib
/usr/lib/rustlib/wasm32-unknown-unknown/lib/libpanic_unwind-e578107a69e1c933.rlib
/usr/lib/rustlib/wasm32-unknown-unknown/lib/libproc_macro-9dde992e2f6c8bd3.rlib
/usr/lib/rustlib/wasm32-unknown-unknown/lib/librustc_demangle-9dab48c998ee2a1e.rlib
/usr/lib/rustlib/wasm32-unknown-unknown/lib/librustc_literal_escaper-c3646fafdd4ed9a8.rlib
/usr/lib/rustlib/wasm32-unknown-unknown/lib/librustc_std_workspace_alloc-41defbeb7d9972fd.rlib
/usr/lib/rustlib/wasm32-unknown-unknown/lib/librustc_std_workspace_core-cf8b594ba3dba2f1.rlib
/usr/lib/rustlib/wasm32-unknown-unknown/lib/librustc_std_workspace_std-471e55a393450b62.rlib
/usr/lib/rustlib/wasm32-unknown-unknown/lib/libstd-0e477893309e066d.rlib
/usr/lib/rustlib/wasm32-unknown-unknown/lib/libstd_detect-f41a50e0c5946550.rlib
/usr/lib/rustlib/wasm32-unknown-unknown/lib/libsysroot-ea74746b3b99db87.rlib
/usr/lib/rustlib/wasm32-unknown-unknown/lib/libtest-858ccbd93f994ad0.rlib
/usr/lib/rustlib/wasm32-unknown-unknown/lib/libunicode_width-4d2ec5c22711c206.rlib
/usr/lib/rustlib/wasm32-unknown-unknown/lib/libunwind-18e78d0166854e35.rlib
/usr/lib/rustlib/x86_64-unknown-linux-gnu
/usr/lib/rustlib/x86_64-unknown-linux-gnu/bin
/usr/lib/rustlib/x86_64-unknown-linux-gnu/bin/FileCheck
/usr/lib/rustlib/x86_64-unknown-linux-gnu/bin/gcc-ld
/usr/lib/rustlib/x86_64-unknown-linux-gnu/bin/gcc-ld/ld.lld
/usr/lib/rustlib/x86_64-unknown-linux-gnu/bin/gcc-ld/ld64.lld
/usr/lib/rustlib/x86_64-unknown-linux-gnu/bin/gcc-ld/lld-link
/usr/lib/rustlib/x86_64-unknown-linux-gnu/bin/gcc-ld/wasm-ld
/usr/lib/rustlib/x86_64-unknown-linux-gnu/bin/rust-lld
/usr/lib/rustlib/x86_64-unknown-linux-gnu/bin/rust-objcopy
/usr/lib/rustlib/x86_64-unknown-linux-gnu/lib
/usr/lib/rustlib/x86_64-unknown-linux-gnu/lib/libaddr2line-798822506dbc19e3.rlib
/usr/lib/rustlib/x86_64-unknown-linux-gnu/lib/libadler2-76b7f96516da7976.rlib
/usr/lib/rustlib/x86_64-unknown-linux-gnu/lib/liballoc-e146d42b71953997.rlib
/usr/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcfg_if-593c984dc3752abb.rlib
/usr/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcompiler_builtins-12876fee23accea8.rlib
/usr/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcore-96120ccce6b40166.rlib
/usr/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgetopts-72ca0284619bd8ff.rlib
/usr/lib/rustlib/x86_64-unknown-linux-gnu/lib/libgimli-86dd6a109ac778c5.rlib
/usr/lib/rustlib/x86_64-unknown-linux-gnu/lib/libhashbrown-ebd318af467725e1.rlib
/usr/lib/rustlib/x86_64-unknown-linux-gnu/lib/liblibc-0d80c877022ac1b8.rlib
/usr/lib/rustlib/x86_64-unknown-linux-gnu/lib/libmemchr-6acbfc69cd62209f.rlib
/usr/lib/rustlib/x86_64-unknown-linux-gnu/lib/libminiz_oxide-940fcb553d340dd2.rlib
/usr/lib/rustlib/x86_64-unknown-linux-gnu/lib/libobject-6a65afc06e238995.rlib
/usr/lib/rustlib/x86_64-unknown-linux-gnu/lib/libpanic_abort-d341b66541b4e2c2.rlib
/usr/lib/rustlib/x86_64-unknown-linux-gnu/lib/libpanic_unwind-1549f0a052fc39a5.rlib
/usr/lib/rustlib/x86_64-unknown-linux-gnu/lib/libproc_macro-08450cd2167a5cfc.rlib
/usr/lib/rustlib/x86_64-unknown-linux-gnu/lib/libprofiler_builtins-a0599ea291323446.rlib
/usr/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_demangle-3a366ec01b0d61f0.rlib
/usr/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_literal_escaper-cf3304607d2a8304.rlib
/usr/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_alloc-48d5d3fcf5ede216.rlib
/usr/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_core-4a68d6b8f792a37a.rlib
/usr/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_std-07a3aec11f6128a2.rlib
/usr/lib/rustlib/x86_64-unknown-linux-gnu/lib/libstd-12b1953fa5f3f8bf.rlib
/usr/lib/rustlib/x86_64-unknown-linux-gnu/lib/libstd-12b1953fa5f3f8bf.so
/usr/lib/rustlib/x86_64-unknown-linux-gnu/lib/libstd_detect-3626cf06c34b4ec0.rlib
/usr/lib/rustlib/x86_64-unknown-linux-gnu/lib/libsysroot-a8028519fb2d82eb.rlib
/usr/lib/rustlib/x86_64-unknown-linux-gnu/lib/libtest-09828ede616d2c3c.rlib
/usr/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunicode_width-bf317d4f70e2d783.rlib
/usr/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunwind-348e71d127620854.rlib
/usr/lib/rustlib/x86_64-unknown-none
/usr/lib/rustlib/x86_64-unknown-none/lib
/usr/lib/rustlib/x86_64-unknown-none/lib/liballoc-ac4f930e3781d450.rlib
/usr/lib/rustlib/x86_64-unknown-none/lib/libcompiler_builtins-c8bbfcbc08794f61.rlib
/usr/lib/rustlib/x86_64-unknown-none/lib/libcore-8aadf27a04bf79f1.rlib
/usr/lib/rustlib/x86_64-unknown-none/lib/librustc_std_workspace_core-1f7f72068edc507e.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, Tue Jul 15 00:03:57 2025