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

rust1.70-1.70.0-1.1 RPM for s390x

From OpenSuSE Ports Tumbleweed for s390x

Name: rust1.70 Distribution: openSUSE:Factory:zSystems
Version: 1.70.0 Vendor: openSUSE
Release: 1.1 Build date: Wed Jun 7 23:32:00 2023
Group: Development/Languages/Rust Build host: s390zp2a
Size: 220215230 Source RPM: rust1.70-1.70.0-1.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

* Sat Jun 03 2023 William Brown <william.brown@suse.com>
  Version 1.70.0 (2023-06-01)
    Language
  --------
  - [Relax ordering rules for `asm!` operands](https://github.com/rust-lang/rust/pull/105798/)
  - [Properly allow macro expanded `format_args` invocations to uses captures](https://github.com/rust-lang/rust/pull/106505/)
  - [Lint ambiguous glob re-exports](https://github.com/rust-lang/rust/pull/107880/)
  - [Perform const and unsafe checking for expressions in `let _ = expr` position.](https://github.com/rust-lang/rust/pull/102256/)
    Compiler
  --------
  - [Extend -Cdebuginfo with new options and named aliases](https://github.com/rust-lang/rust/pull/109808/)
    This provides a smaller version of debuginfo for cases that only need line number information
    (`-Cdebuginfo=line-tables-only`), which may eventually become the default for `-Cdebuginfo=1`.
  - [Make `unused_allocation` lint against `Box::new` too](https://github.com/rust-lang/rust/pull/104363/)
  - [Detect uninhabited types early in const eval](https://github.com/rust-lang/rust/pull/109435/)
  - [Switch to LLD as default linker for {arm,thumb}v4t-none-eabi](https://github.com/rust-lang/rust/pull/109721/)
  - [Add tier 3 target `loongarch64-unknown-linux-gnu`](https://github.com/rust-lang/rust/pull/96971)
  - [Add tier 3 target for `i586-pc-nto-qnx700` (QNX Neutrino RTOS, version 7.0)](https://github.com/rust-lang/rust/pull/109173/),
  - [Insert alignment checks for pointer dereferences as debug assertions](https://github.com/rust-lang/rust/pull/98112)
    This catches undefined behavior at runtime, and may cause existing code to fail.
    Refer to Rust's [platform support page][platform-support-doc]
    for more information on Rust's tiered platform support.
    Libraries
  ---------
  - [Document NonZeroXxx layout guarantees](https://github.com/rust-lang/rust/pull/94786/)
  - [Windows: make `Command` prefer non-verbatim paths](https://github.com/rust-lang/rust/pull/96391/)
  - [Implement Default for some alloc/core iterators](https://github.com/rust-lang/rust/pull/99929/)
  - [Fix handling of trailing bare CR in str::lines](https://github.com/rust-lang/rust/pull/100311/)
  - [allow negative numeric literals in `concat!`](https://github.com/rust-lang/rust/pull/106844/)
  - [Add documentation about the memory layout of `Cell`](https://github.com/rust-lang/rust/pull/106921/)
  - [Use `partial_cmp` to implement tuple `lt`/`le`/`ge`/`gt`](https://github.com/rust-lang/rust/pull/108157/)
  - [Stabilize `atomic_as_ptr`](https://github.com/rust-lang/rust/pull/108419/)
  - [Stabilize `nonnull_slice_from_raw_parts`](https://github.com/rust-lang/rust/pull/97506/)
  - [Partial stabilization of `once_cell`](https://github.com/rust-lang/rust/pull/105587/)
  - [Stabilize `nonzero_min_max`](https://github.com/rust-lang/rust/pull/106633/)
  - [Flatten/inline format_args!() and (string and int) literal arguments into format_args!()](https://github.com/rust-lang/rust/pull/106824/)
  - [Stabilize movbe target feature](https://github.com/rust-lang/rust/pull/107711/)
  - [don't splice from files into pipes in io::copy](https://github.com/rust-lang/rust/pull/108283/)
  - [Add a builtin unstable `FnPtr` trait that is implemented for all function pointers](https://github.com/rust-lang/rust/pull/108080/)
    This extends `Debug`, `Pointer`, `Hash`, `PartialEq`, `Eq`, `PartialOrd`, and `Ord`
    implementations for function pointers with all ABIs.
    Stabilized APIs
  - [`NonZero*::MIN/MAX`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroI8.html#associatedconstant.MIN)
  - [`BinaryHeap::retain`](https://doc.rust-lang.org/stable/std/collections/struct.BinaryHeap.html#method.retain)
  - [`Default for std::collections::binary_heap::IntoIter`](https://doc.rust-lang.org/stable/std/collections/binary_heap/struct.IntoIter.html)
  - [`Default for std::collections::btree_map::{IntoIter, Iter, IterMut}`](https://doc.rust-lang.org/stable/std/collections/btree_map/struct.IntoIter.html)
  - [`Default for std::collections::btree_map::{IntoKeys, Keys}`](https://doc.rust-lang.org/stable/std/collections/btree_map/struct.IntoKeys.html)
  - [`Default for std::collections::btree_map::{IntoValues, Values}`](https://doc.rust-lang.org/stable/std/collections/btree_map/struct.IntoKeys.html)
  - [`Default for std::collections::btree_map::Range`](https://doc.rust-lang.org/stable/std/collections/btree_map/struct.Range.html)
  - [`Default for std::collections::btree_set::{IntoIter, Iter}`](https://doc.rust-lang.org/stable/std/collections/btree_set/struct.IntoIter.html)
  - [`Default for std::collections::btree_set::Range`](https://doc.rust-lang.org/stable/std/collections/btree_set/struct.Range.html)
  - [`Default for std::collections::linked_list::{IntoIter, Iter, IterMut}`](https://doc.rust-lang.org/stable/alloc/collections/linked_list/struct.IntoIter.html)
  - [`Default for std::vec::IntoIter`](https://doc.rust-lang.org/stable/alloc/vec/struct.IntoIter.html#impl-Default-for-IntoIter%3CT,+A%3E)
  - [`Default for std::iter::Chain`](https://doc.rust-lang.org/stable/std/iter/struct.Chain.html)
  - [`Default for std::iter::Cloned`](https://doc.rust-lang.org/stable/std/iter/struct.Cloned.html)
  - [`Default for std::iter::Copied`](https://doc.rust-lang.org/stable/std/iter/struct.Copied.html)
  - [`Default for std::iter::Enumerate`](https://doc.rust-lang.org/stable/std/iter/struct.Enumerate.html)
  - [`Default for std::iter::Flatten`](https://doc.rust-lang.org/stable/std/iter/struct.Flatten.html)
  - [`Default for std::iter::Fuse`](https://doc.rust-lang.org/stable/std/iter/struct.Fuse.html)
  - [`Default for std::iter::Rev`](https://doc.rust-lang.org/stable/std/iter/struct.Rev.html)
  - [`Default for std::slice::Iter`](https://doc.rust-lang.org/stable/std/slice/struct.Iter.html)
  - [`Default for std::slice::IterMut`](https://doc.rust-lang.org/stable/std/slice/struct.IterMut.html)
  - [`Rc::into_inner`](https://doc.rust-lang.org/stable/alloc/rc/struct.Rc.html#method.into_inner)
  - [`Arc::into_inner`](https://doc.rust-lang.org/stable/alloc/sync/struct.Arc.html#method.into_inner)
  - [`std::cell::OnceCell`](https://doc.rust-lang.org/stable/std/cell/struct.OnceCell.html)
  - [`Option::is_some_and`](https://doc.rust-lang.org/stable/std/option/enum.Option.html#method.is_some_and)
  - [`NonNull::slice_from_raw_parts`](https://doc.rust-lang.org/stable/std/ptr/struct.NonNull.html#method.slice_from_raw_parts)
  - [`Result::is_ok_and`](https://doc.rust-lang.org/stable/std/result/enum.Result.html#method.is_ok_and)
  - [`Result::is_err_and`](https://doc.rust-lang.org/stable/std/result/enum.Result.html#method.is_err_and)
  - [`std::sync::atomic::Atomic*::as_ptr`](https://doc.rust-lang.org/stable/std/sync/atomic/struct.AtomicU8.html#method.as_ptr)
  - [`std::io::IsTerminal`](https://doc.rust-lang.org/stable/std/io/trait.IsTerminal.html)
  - [`std::os::linux::net::SocketAddrExt`](https://doc.rust-lang.org/stable/std/os/linux/net/trait.SocketAddrExt.html)
  - [`std::os::unix::net::UnixDatagram::bind_addr`](https://doc.rust-lang.org/stable/std/os/unix/net/struct.UnixDatagram.html#method.bind_addr)
  - [`std::os::unix::net::UnixDatagram::connect_addr`](https://doc.rust-lang.org/stable/std/os/unix/net/struct.UnixDatagram.html#method.connect_addr)
  - [`std::os::unix::net::UnixDatagram::send_to_addr`](https://doc.rust-lang.org/stable/std/os/unix/net/struct.UnixDatagram.html#method.send_to_addr)
  - [`std::os::unix::net::UnixListener::bind_addr`](https://doc.rust-lang.org/stable/std/os/unix/net/struct.UnixListener.html#method.bind_addr)
  - [`std::path::Path::as_mut_os_str`](https://doc.rust-lang.org/stable/std/path/struct.Path.html#method.as_mut_os_str)
  - [`std::sync::OnceLock`](https://doc.rust-lang.org/stable/std/sync/struct.OnceLock.html)
    Cargo
  -----
  - [Add `CARGO_PKG_README`](https://github.com/rust-lang/cargo/pull/11645/)
  - [Make `sparse` the default protocol for crates.io](https://github.com/rust-lang/cargo/pull/11791/)
  - [Accurately show status when downgrading dependencies](https://github.com/rust-lang/cargo/pull/11839/)
  - [Use registry.default for login/logout](https://github.com/rust-lang/cargo/pull/11949/)
  - [Stabilize `cargo logout`](https://github.com/rust-lang/cargo/pull/11950/)
    Misc
  ----
  - [Stabilize rustdoc `--test-run-directory`](https://github.com/rust-lang/rust/pull/103682/)
    Compatibility Notes
  - [Prevent stable `libtest` from supporting `-Zunstable-options`](https://github.com/rust-lang/rust/pull/109044/)
  - [Perform const and unsafe checking for expressions in `let _ = expr` position.](https://github.com/rust-lang/rust/pull/102256/)
  - [WebAssembly targets enable `sign-ext` and `mutable-globals` features in codegen](https://github.com/rust-lang/rust/issues/109807)
    This may cause incompatibility with older execution environments.
  - [Insert alignment checks for pointer dereferences as debug assertions](https://github.com/rust-lang/rust/pull/98112)
    This catches undefined behavior at runtime, and may cause existing code to fail.

Files

/usr/bin/rust-gdb
/usr/bin/rust-gdbgui
/usr/bin/rust-lldb
/usr/bin/rustc
/usr/bin/rustdoc
/usr/lib/librustc_driver-758789c2f24be8f9.so
/usr/lib/libstd-fad7ade0c2f81fa5.so
/usr/lib/libtest-ec76f37246b011f6.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-de3150453a6a30c4.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libadler-9be03efc607c31d4.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/liballoc-7e2a2368c68d36f2.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libcfg_if-438b1143b13dd2d6.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libcompiler_builtins-3285cd81d89e0d67.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libcore-32c3ce46d6fff767.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libgetopts-68cf5ea41ce8cbbc.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libgimli-cca52a97df6863d8.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libhashbrown-40db12d6b1828e5b.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/liblibc-77130f1dbec58ae5.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libmemchr-0651ff424d1f5976.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libminiz_oxide-c46631ab7c3ce550.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libobject-531e52e40ca30ce6.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libpanic_abort-c18c3fba56fe61c1.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libpanic_unwind-15436629849aeb8b.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libproc_macro-27a6cec665957aae.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/librustc_demangle-dae2b77f28cba987.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/librustc_std_workspace_alloc-3418cd08e1d24284.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/librustc_std_workspace_core-ae80af2952952cb1.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/librustc_std_workspace_std-4eb8e2f0401ae7b8.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libstd-fad7ade0c2f81fa5.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libstd-fad7ade0c2f81fa5.so
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libstd_detect-8179f0d37cb7da34.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libtest-ec76f37246b011f6.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libtest-ec76f37246b011f6.so
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libunicode_width-6801f9667f7eeddd.rlib
/usr/lib/rustlib/s390x-unknown-linux-gnu/lib/libunwind-d3fa22a87cb8ddbb.rlib
/usr/libexec/cargo-credential-1password
/usr/share/doc/packages/rust1.70
/usr/share/doc/packages/rust1.70/CONTRIBUTING.md
/usr/share/doc/packages/rust1.70/README.md
/usr/share/doc/packages/rust1.70/RELEASES.md
/usr/share/licenses/rust1.70
/usr/share/licenses/rust1.70/COPYRIGHT
/usr/share/licenses/rust1.70/LICENSE-APACHE
/usr/share/licenses/rust1.70/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