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

rust1.72-1.72.1-2.1 RPM for s390x

From OpenSuSE Ports Tumbleweed for s390x

Name: rust1.72 Distribution: openSUSE:Factory:zSystems
Version: 1.72.1 Vendor: openSUSE
Release: 2.1 Build date: Wed Oct 11 20:29:41 2023
Group: Development/Languages/Rust Build host: s390zl29
Size: 218392483 Source RPM: rust1.72-1.72.1-2.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.

Provides

Requires

License

Apache-2.0 OR MIT

Changelog

* Thu Oct 05 2023 William Brown <william.brown@suse.com>
  - bsc#1215834 - update to use gcc12
* Thu Sep 21 2023 William Brown <william.brown@suse.com>
  Version 1.72.1 (2023-09-19)
  - [Adjust codegen change to improve LLVM codegen](https://github.com/rust-lang/rust/pull/115236)
  - [rustdoc: Fix self ty params in objects with lifetimes](https://github.com/rust-lang/rust/pull/115276)
  - [Fix regression in compile times](https://github.com/rust-lang/rust/pull/114948)
  - Resolve some ICE regressions in the compiler:
    - [#115215](https://github.com/rust-lang/rust/pull/115215)
    - [#115559](https://github.com/rust-lang/rust/pull/115559)
* Sun Aug 27 2023 William Brown <william.brown@suse.com>
  - bsc#1214689 - CVE-2023-40030 - fix minor non-exploited issue in cargo
    build timings that may allow xss from dependencies.
    Version 1.72.0 (2023-08-24)
    Language
  --------
  - [Replace const eval limit by a lint and add an exponential backoff warning](https://github.com/rust-lang/rust/pull/103877/)
  - [expand: Change how `#![cfg(FALSE)]` behaves on crate root](https://github.com/rust-lang/rust/pull/110141/)
  - [Stabilize inline asm for LoongArch64](https://github.com/rust-lang/rust/pull/111235/)
  - [Uplift `clippy::undropped_manually_drops` lint](https://github.com/rust-lang/rust/pull/111530/)
  - [Uplift `clippy::invalid_utf8_in_unchecked` lint](https://github.com/rust-lang/rust/pull/111543/)
  - [Uplift `clippy::cast_ref_to_mut` lint](https://github.com/rust-lang/rust/pull/111567/)
  - [Uplift `clippy::cmp_nan` lint](https://github.com/rust-lang/rust/pull/111818/)
  - [resolve: Remove artificial import ambiguity errors](https://github.com/rust-lang/rust/pull/112086/)
  - [Don't require associated types with Self: Sized bounds in `dyn Trait` objects](https://github.com/rust-lang/rust/pull/112319/)
    Compiler
  --------
  - [Remember names of `cfg`-ed out items to mention them in diagnostics](https://github.com/rust-lang/rust/pull/109005/)
  - [Support for native WASM exceptions](https://github.com/rust-lang/rust/pull/111322/)
  - [Add support for NetBSD/aarch64-be (big-endian arm64).](https://github.com/rust-lang/rust/pull/111326/)
  - [Write to stdout if `-` is given as output file](https://github.com/rust-lang/rust/pull/111626/)
  - [Force all native libraries to be statically linked when linking a static binary](https://github.com/rust-lang/rust/pull/111698/)
  - [Add Tier 3 support for `loongarch64-unknown-none*`](https://github.com/rust-lang/rust/pull/112310/)
  - [Prevent `.eh_frame` from being emitted for `-C panic=abort`](https://github.com/rust-lang/rust/pull/112403/)
  - [Support 128-bit enum variant in debuginfo codegen](https://github.com/rust-lang/rust/pull/112474/)
  - [compiler: update solaris/illumos to enable tsan support.](https://github.com/rust-lang/rust/pull/112039/)
    Refer to Rust's [platform support page][platform-support-doc]
    for more information on Rust's tiered platform support.
    Libraries
  ---------
  - [Document memory orderings of `thread::{park, unpark}`](https://github.com/rust-lang/rust/pull/99587/)
  - [io: soften ‘at most one write attempt’ requirement in io::Write::write](https://github.com/rust-lang/rust/pull/107200/)
  - [Specify behavior of HashSet::insert](https://github.com/rust-lang/rust/pull/107619/)
  - [Relax implicit `T: Sized` bounds on `BufReader<T>`, `BufWriter<T>` and `LineWriter<T>`](https://github.com/rust-lang/rust/pull/111074/)
  - [Update runtime guarantee for `select_nth_unstable`](https://github.com/rust-lang/rust/pull/111974/)
  - [Return `Ok` on kill if process has already exited](https://github.com/rust-lang/rust/pull/112594/)
  - [Implement PartialOrd for `Vec`s over different allocators](https://github.com/rust-lang/rust/pull/112632/)
  - [Use 128 bits for TypeId hash](https://github.com/rust-lang/rust/pull/109953/)
  - [Don't drain-on-drop in DrainFilter impls of various collections.](https://github.com/rust-lang/rust/pull/104455/)
  - [Make `{Arc,Rc,Weak}::ptr_eq` ignore pointer metadata](https://github.com/rust-lang/rust/pull/106450/)
    Rustdoc
  -------
  - [Allow whitespace as path separator like double colon](https://github.com/rust-lang/rust/pull/108537/)
  - [Add search result item types after their name](https://github.com/rust-lang/rust/pull/110688/)
  - [Search for slices and arrays by type with `[]`](https://github.com/rust-lang/rust/pull/111958/)
  - [Clean up type unification and "unboxing"](https://github.com/rust-lang/rust/pull/112233/)
    Stabilized APIs
  - [`impl<T: Send> Sync for mpsc::Sender<T>`](https://doc.rust-lang.org/stable/std/sync/mpsc/struct.Sender.html#impl-Sync-for-Sender%3CT%3E)
  - [`impl TryFrom<&OsStr> for &str`](https://doc.rust-lang.org/stable/std/primitive.str.html#impl-TryFrom%3C%26'a+OsStr%3E-for-%26'a+str)
  - [`String::leak`](https://doc.rust-lang.org/stable/alloc/string/struct.String.html#method.leak)
    These APIs are now stable in const contexts:
  - [`CStr::from_bytes_with_nul`](https://doc.rust-lang.org/stable/std/ffi/struct.CStr.html#method.from_bytes_with_nul)
  - [`CStr::to_bytes`](https://doc.rust-lang.org/stable/std/ffi/struct.CStr.html#method.to_bytes)
  - [`CStr::to_bytes_with_nul`](https://doc.rust-lang.org/stable/std/ffi/struct.CStr.html#method.to_bytes_with_nul)
  - [`CStr::to_str`](https://doc.rust-lang.org/stable/std/ffi/struct.CStr.html#method.to_str)
    Cargo
  -----
  - Enable `-Zdoctest-in-workspace` by default. When running each documentation
    test, the working directory is set to the root directory of the package the
    test belongs to.
    [docs](https://doc.rust-lang.org/nightly/cargo/commands/cargo-test.html#working-directory-of-tests)
    [#12221](https://github.com/rust-lang/cargo/pull/12221)
    [#12288](https://github.com/rust-lang/cargo/pull/12288)
  - Add support of the "default" keyword to reset previously set `build.jobs`
    parallelism back to the default.
    [#12222](https://github.com/rust-lang/cargo/pull/12222)
    Compatibility Notes
  - [Alter `Display` for `Ipv6Addr` for IPv4-compatible addresses](https://github.com/rust-lang/rust/pull/112606/)
  - Cargo changed feature name validation check to a hard error. The warning was
    added in Rust 1.49. These extended characters aren't allowed on crates.io, so
    this should only impact users of other registries, or people who don't publish
    to a registry.
    [#12291](https://github.com/rust-lang/cargo/pull/12291)

Files

/usr/bin/rust-gdb
/usr/bin/rust-gdbgui
/usr/bin/rust-lldb
/usr/bin/rustc
/usr/bin/rustdoc
/usr/lib/librustc_driver-c85ca7c23fb0cd3b.so
/usr/lib/libstd-b022cf25ad23ac77.so
/usr/lib/libtest-988c2ccdd0025cb3.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/s390x-unknown-linux-gnu
/usr/lib/rustlib/s390x-unknown-linux-gnu/bin
/usr/lib/rustlib/s390x-unknown-linux-gnu/bin/gcc-ld
/usr/lib/rustlib/s390x-unknown-linux-gnu/bin/gcc-ld/ld.lld
/usr/lib/rustlib/s390x-unknown-linux-gnu/bin/gcc-ld/ld64.lld
/usr/lib/rustlib/s390x-unknown-linux-gnu/bin/gcc-ld/lld-link
/usr/lib/rustlib/s390x-unknown-linux-gnu/bin/gcc-ld/wasm-ld
/usr/lib/rustlib/s390x-unknown-linux-gnu/bin/rust-lld
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libaddr2line-2e13c8a66dc1eac2.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libadler-08434652b18c22d4.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/liballoc-538d1dcca8e0982b.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libcfg_if-7e170d4e760dd2af.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libcompiler_builtins-45b11d5c71561901.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libcore-389719ed8075c20e.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libgetopts-c046c6c9e74c9a4e.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libgimli-da710d50e11150e8.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libhashbrown-81697079de748129.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/liblibc-6b1d95e145f9f9e1.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libmemchr-a10bde6c989b4d59.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libminiz_oxide-f1ce80af2c81de72.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libobject-66abae74dc707ebb.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libpanic_abort-2ecbea6a8e7df7c1.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libpanic_unwind-6dc2a6c8b109c100.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libproc_macro-2f65ec96da7133b0.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/librustc_demangle-7a1882b6659d2e71.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/librustc_std_workspace_alloc-67a3442750f8672e.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/librustc_std_workspace_core-c28809a39ba00814.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/librustc_std_workspace_std-cb1f1d79c410254c.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libstd-b022cf25ad23ac77.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libstd-b022cf25ad23ac77.so
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libstd_detect-a25e526f9a729a22.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libsysroot-b2cf4372422f0174.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libtest-988c2ccdd0025cb3.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libtest-988c2ccdd0025cb3.so
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libunicode_width-6ae77df85e0c3906.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libunwind-3ddd596a8bee9fc8.rlib
/usr/libexec/cargo-credential-1password
/usr/share/doc/packages/rust1.72
/usr/share/doc/packages/rust1.72/CONTRIBUTING.md
/usr/share/doc/packages/rust1.72/README.md
/usr/share/doc/packages/rust1.72/RELEASES.md
/usr/share/licenses/rust1.72
/usr/share/licenses/rust1.72/COPYRIGHT
/usr/share/licenses/rust1.72/LICENSE-APACHE
/usr/share/licenses/rust1.72/LICENSE-MIT
/usr/share/man/man1/rustc.1.gz
/usr/share/man/man1/rustdoc.1.gz


Generated by rpm2html 1.8.1

Fabrice Bellet, Sat Mar 9 12:50:11 2024