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

rust1.74-1.74.0-2.2 RPM for s390x

From OpenSuSE Ports Tumbleweed for s390x

Name: rust1.74 Distribution: openSUSE:Factory:zSystems
Version: 1.74.0 Vendor: openSUSE
Release: 2.2 Build date: Sat Jan 27 02:09:16 2024
Group: Development/Languages/Rust Build host: reproducible
Size: 211094021 Source RPM: rust1.74-1.74.0-2.2.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

* Sat Jan 27 2024 William Brown <william.brown@suse.com>
  - bsc#1217722 jsc#PED-6570 - exclude issue-71519 as when we enable lld for wasm,
    this test incorrectly assumes we can use it with -Z gcc-ld=lld which is a nightly
    only flag.
* Fri Nov 17 2023 William Brown <william.brown@suse.com>
  Version 1.74.0 (2023-11-16)
    Language
  --------
  - [Codify that `std::mem::Discriminant<T>` does not depend on any lifetimes in T](https://github.com/rust-lang/rust/pull/104299/)
  - [Replace `private_in_public` lint with `private_interfaces` and `private_bounds` per RFC 2145.](https://github.com/rust-lang/rust/pull/113126/)
    Read more in [RFC 2145](https://rust-lang.github.io/rfcs/2145-type-privacy.html).
  - [Allow explicit `#[repr(Rust)]`](https://github.com/rust-lang/rust/pull/114201/)
  - [closure field capturing: don't depend on alignment of packed fields](https://github.com/rust-lang/rust/pull/115315/)
  - [Enable MIR-based drop-tracking for `async` blocks](https://github.com/rust-lang/rust/pull/107421/)
  - [Stabilize `impl_trait_projections`](https://github.com/rust-lang/rust/pull/115659)
    Compiler
  --------
  - [stabilize combining +bundle and +whole-archive link modifiers](https://github.com/rust-lang/rust/pull/113301/)
  - [Stabilize `PATH` option for `--print KIND=PATH`](https://github.com/rust-lang/rust/pull/114183/)
  - [Enable ASAN/LSAN/TSAN for `*-apple-ios-macabi`](https://github.com/rust-lang/rust/pull/115644/)
  - [Promote loongarch64-unknown-none* to Tier 2](https://github.com/rust-lang/rust/pull/115368/)
  - [Add `i686-pc-windows-gnullvm` as a tier 3 target](https://github.com/rust-lang/rust/pull/115687/)
    Libraries
  ---------
  - [Implement `From<OwnedFd/Handle>` for ChildStdin/out/err](https://github.com/rust-lang/rust/pull/98704/)
  - [Implement `From<{&,&mut} [T; N]>` for `Vec<T>` where `T: Clone`](https://github.com/rust-lang/rust/pull/111278/)
  - [impl Step for IP addresses](https://github.com/rust-lang/rust/pull/113748/)
  - [Implement `From<[T; N]>` for `Rc<[T]>` and `Arc<[T]>`](https://github.com/rust-lang/rust/pull/114041/)
  - [`impl TryFrom<char> for u16`](https://github.com/rust-lang/rust/pull/114065/)
  - [Stabilize `io_error_other` feature](https://github.com/rust-lang/rust/pull/115453/)
  - [Stabilize the `Saturating` type](https://github.com/rust-lang/rust/pull/115477/)
  - [Stabilize const_transmute_copy](https://github.com/rust-lang/rust/pull/115520/)
    Stabilized APIs
  - [`core::num::Saturating`](https://doc.rust-lang.org/stable/std/num/struct.Saturating.html)
  - [`impl From<io::Stdout> for std::process::Stdio`](https://doc.rust-lang.org/stable/std/process/struct.Stdio.html#impl-From%3CStdout%3E-for-Stdio)
  - [`impl From<io::Stderr> for std::process::Stdio`](https://doc.rust-lang.org/stable/std/process/struct.Stdio.html#impl-From%3CStderr%3E-for-Stdio)
  - [`impl From<OwnedHandle> for std::process::Child{Stdin, Stdout, Stderr}`](https://doc.rust-lang.org/stable/std/process/struct.Stdio.html#impl-From%3CStderr%3E-for-Stdio)
  - [`impl From<OwnedFd> for std::process::Child{Stdin, Stdout, Stderr}`](https://doc.rust-lang.org/stable/std/process/struct.Stdio.html#impl-From%3CStderr%3E-for-Stdio)
  - [`std::ffi::OsString::from_encoded_bytes_unchecked`](https://doc.rust-lang.org/stable/std/ffi/struct.OsString.html#method.from_encoded_bytes_unchecked)
  - [`std::ffi::OsString::into_encoded_bytes`](https://doc.rust-lang.org/stable/std/ffi/struct.OsString.html#method.into_encoded_bytes)
  - [`std::ffi::OsStr::from_encoded_bytes_unchecked`](https://doc.rust-lang.org/stable/std/ffi/struct.OsStr.html#method.from_encoded_bytes_unchecked)
  - [`std::ffi::OsStr::as_encoded_bytes`](https://doc.rust-lang.org/stable/std/ffi/struct.OsStr.html#method.as_encoded_bytes)
  - [`std::io::Error::other`](https://doc.rust-lang.org/stable/std/io/struct.Error.html#method.other)
  - [`impl TryFrom<char> for u16`](https://doc.rust-lang.org/stable/std/primitive.u16.html#impl-TryFrom%3Cchar%3E-for-u16)
  - [`impl<T: Clone, const N: usize> From<&[T; N]> for Vec<T>`](https://doc.rust-lang.org/stable/std/vec/struct.Vec.html#impl-From%3C%26%5BT;+N%5D%3E-for-Vec%3CT,+Global%3E)
  - [`impl<T: Clone, const N: usize> From<&mut [T; N]> for Vec<T>`](https://doc.rust-lang.org/stable/std/vec/struct.Vec.html#impl-From%3C%26mut+%5BT;+N%5D%3E-for-Vec%3CT,+Global%3E)
  - [`impl<T, const N: usize> From<[T; N]> for Arc<[T]>`](https://doc.rust-lang.org/stable/std/sync/struct.Arc.html#impl-From%3C%5BT;+N%5D%3E-for-Arc%3C%5BT%5D,+Global%3E)
  - [`impl<T, const N: usize> From<[T; N]> for Rc<[T]>`](https://doc.rust-lang.org/stable/std/rc/struct.Rc.html#impl-From%3C%5BT;+N%5D%3E-for-Rc%3C%5BT%5D,+Global%3E)
    These APIs are now stable in const contexts:
  - [`core::mem::transmute_copy`](https://doc.rust-lang.org/beta/std/mem/fn.transmute_copy.html)
  - [`str::is_ascii`](https://doc.rust-lang.org/beta/std/primitive.str.html#method.is_ascii)
  - [`[u8]::is_ascii`](https://doc.rust-lang.org/beta/std/primitive.slice.html#method.is_ascii)
    Cargo
  -----
  - [fix: Set MSRV for internal packages](https://github.com/rust-lang/cargo/pull/12381/)
  - [config: merge lists in precedence order](https://github.com/rust-lang/cargo/pull/12515/)
  - [fix(update): Clarify meaning of --aggressive as --recursive](https://github.com/rust-lang/cargo/pull/12544/)
  - [fix(update): Make `-p` more convenient by being positional](https://github.com/rust-lang/cargo/pull/12545/)
  - [feat(help): Add styling to help output ](https://github.com/rust-lang/cargo/pull/12578/)
  - [feat(pkgid): Allow incomplete versions when unambigious](https://github.com/rust-lang/cargo/pull/12614/)
  - [feat: stabilize credential-process and registry-auth](https://github.com/rust-lang/cargo/pull/12649/)
  - [feat(cli): Add '-n' to dry-run](https://github.com/rust-lang/cargo/pull/12660/)
  - [Add support for `target.'cfg(..)'.linker`](https://github.com/rust-lang/cargo/pull/12535/)
  - [Stabilize `--keep-going`](https://github.com/rust-lang/cargo/pull/12568/)
  - [feat: Stabilize lints](https://github.com/rust-lang/cargo/pull/12648/)
    Rustdoc
  -------
  - [Add warning block support in rustdoc](https://github.com/rust-lang/rust/pull/106561/)
  - [Accept additional user-defined syntax classes in fenced code blocks](https://github.com/rust-lang/rust/pull/110800/)
  - [rustdoc-search: add support for type parameters](https://github.com/rust-lang/rust/pull/112725/)
  - [rustdoc: show inner enum and struct in type definition for concrete type](https://github.com/rust-lang/rust/pull/114855/)
    Compatibility Notes
  - [Raise minimum supported Apple OS versions](https://github.com/rust-lang/rust/pull/104385/)
  - [make Cell::swap panic if the Cells partially overlap](https://github.com/rust-lang/rust/pull/114795/)
  - [Reject invalid crate names in `--extern`](https://github.com/rust-lang/rust/pull/116001/)
  - [Don't resolve generic impls that may be shadowed by dyn built-in impls](https://github.com/rust-lang/rust/pull/114941/)
  - [The new `impl From<{&,&mut} [T; N]> for Vec<T>` is known to cause some inference failures with overly-generic code.](https://github.com/rust-lang/rust/issues/117054) In those examples using the `tui` crate, the combination of `AsRef<_>` and `Into<Vec>` leaves the middle type ambiguous, and the new `impl` adds another possibility, so it now requires an explicit type annotation.

Files

/usr/bin/rust-gdb
/usr/bin/rust-gdbgui
/usr/bin/rust-lldb
/usr/bin/rustc
/usr/bin/rustdoc
/usr/lib/librustc_driver-edda6782af67113e.so
/usr/lib/libstd-9b6242e3e440d3d6.so
/usr/lib/libtest-cf4476e059a6054f.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-524905ec2eab995e.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libadler-0335c5a2a112b4ae.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/liballoc-ed0e4bf6c9b383c1.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libcfg_if-a518b1cb6153c994.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libcompiler_builtins-92eda77d1837a5fe.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libcore-49ffea5c6e1147b0.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libgetopts-0da82dbe42209828.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libgimli-c039044672d22deb.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libhashbrown-8d62334d903e403e.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/liblibc-c3a6765fdda0754a.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libmemchr-143697412d1811b2.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libminiz_oxide-a56e332072a88bb6.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libobject-1a524fa41eeed2fa.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libpanic_abort-e8c2689cbee763c0.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libpanic_unwind-c54c9d34862d61c7.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libproc_macro-420659cecdaa3921.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/librustc_demangle-67e9c5f285695484.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/librustc_std_workspace_alloc-91415e826350c9f0.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/librustc_std_workspace_core-7d21e7ef5187e82d.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/librustc_std_workspace_std-f58ac540044f74b4.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libstd-9b6242e3e440d3d6.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libstd-9b6242e3e440d3d6.so
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libstd_detect-344b37eedd6c62e5.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libsysroot-c046b0b598a4642f.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libtest-cf4476e059a6054f.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libtest-cf4476e059a6054f.so
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libunicode_width-b38fea078653eb51.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libunwind-64e513108d130d1c.rlib
/usr/share/doc/packages/rust1.74
/usr/share/doc/packages/rust1.74/CONTRIBUTING.md
/usr/share/doc/packages/rust1.74/README.md
/usr/share/doc/packages/rust1.74/RELEASES.md
/usr/share/licenses/rust1.74
/usr/share/licenses/rust1.74/COPYRIGHT
/usr/share/licenses/rust1.74/LICENSE-APACHE
/usr/share/licenses/rust1.74/LICENSE-MIT
/usr/share/man/man1/rustc.1.gz
/usr/share/man/man1/rustdoc.1.gz


Generated by rpm2html 1.8.1

Fabrice Bellet, Thu May 2 23:32:54 2024