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

rust1.77-1.77.0-3.1 RPM for riscv64

From OpenSuSE Ports Tumbleweed for riscv64

Name: rust1.77 Distribution: openSUSE Tumbleweed
Version: 1.77.0 Vendor: openSUSE
Release: 3.1 Build date: Fri Apr 5 02:12:29 2024
Group: Development/Languages/Rust Build host: reproducible
Size: 176987337 Source RPM: rust1.77-1.77.0-3.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

* Fri Apr 05 2024 William Brown <william.brown@suse.com>
  - Remove suggests as they do nothing.
* Fri Mar 29 2024 William Brown <william.brown@suse.com>
  - bsc#1222047 - update gcc minimum to 13 for SLE
* Tue Mar 26 2024 William Brown <william.brown@suse.com>
  Version 1.77.0 (2024-03-21)
    Language
  --------
  - [Reveal opaque types within the defining body for exhaustiveness checking.](https://github.com/rust-lang/rust/pull/116821/)
  - [Stabilize C-string literals.](https://github.com/rust-lang/rust/pull/117472/)
  - [Stabilize THIR unsafeck.](https://github.com/rust-lang/rust/pull/117673/)
  - [Add lint `static_mut_refs` to warn on references to mutable statics.](https://github.com/rust-lang/rust/pull/117556/)
  - [Support async recursive calls (as long as they have indirection).](https://github.com/rust-lang/rust/pull/117703/)
  - [Undeprecate lint `unstable_features` and make use of it in the compiler.](https://github.com/rust-lang/rust/pull/118639/)
  - [Make inductive cycles in coherence ambiguous always.](https://github.com/rust-lang/rust/pull/118649/)
  - [Get rid of type-driven traversal in const-eval interning](https://github.com/rust-lang/rust/pull/119044/),
    only as a [future compatiblity lint](https://github.com/rust-lang/rust/pull/122204) for now.
  - [Deny braced macro invocations in let-else.](https://github.com/rust-lang/rust/pull/119062/)
    Compiler
  --------
  - [Include lint `soft_unstable` in future breakage reports.](https://github.com/rust-lang/rust/pull/116274/)
  - [Make `i128` and `u128` 16-byte aligned on x86-based targets.](https://github.com/rust-lang/rust/pull/116672/)
  - [Use `--verbose` in diagnostic output.](https://github.com/rust-lang/rust/pull/119129/)
  - [Improve spacing between printed tokens.](https://github.com/rust-lang/rust/pull/120227/)
  - [Merge the `unused_tuple_struct_fields` lint into `dead_code`.](https://github.com/rust-lang/rust/pull/118297/)
  - [Error on incorrect implied bounds in well-formedness check](https://github.com/rust-lang/rust/pull/118553/),
    with a temporary exception for Bevy.
  - [Fix coverage instrumentation/reports for non-ASCII source code.](https://github.com/rust-lang/rust/pull/119033/)
  - [Fix `fn`/`const` items implied bounds and well-formedness check.](https://github.com/rust-lang/rust/pull/120019/)
  - [Promote `riscv32{im|imafc}-unknown-none-elf` targets to tier 2.](https://github.com/rust-lang/rust/pull/118704/)
  - Add several new tier 3 targets:
    - [`aarch64-unknown-illumos`](https://github.com/rust-lang/rust/pull/112936/)
    - [`hexagon-unknown-none-elf`](https://github.com/rust-lang/rust/pull/117601/)
    - [`riscv32imafc-esp-espidf`](https://github.com/rust-lang/rust/pull/119738/)
    - [`riscv32im-risc0-zkvm-elf`](https://github.com/rust-lang/rust/pull/117958/)
    Refer to Rust's [platform support page][platform-support-doc]
    for more information on Rust's tiered platform support.
    Libraries
  ---------
  - [Implement `From<&[T; N]>` for `Cow<[T]>`.](https://github.com/rust-lang/rust/pull/113489/)
  - [Remove special-case handling of `vec.split_off(0)`.](https://github.com/rust-lang/rust/pull/119917/)
    Stabilized APIs
  - [`array::each_ref`](https://doc.rust-lang.org/stable/std/primitive.array.html#method.each_ref)
  - [`array::each_mut`](https://doc.rust-lang.org/stable/std/primitive.array.html#method.each_mut)
  - [`core::net`](https://doc.rust-lang.org/stable/core/net/index.html)
  - [`f32::round_ties_even`](https://doc.rust-lang.org/stable/std/primitive.f32.html#method.round_ties_even)
  - [`f64::round_ties_even`](https://doc.rust-lang.org/stable/std/primitive.f64.html#method.round_ties_even)
  - [`mem::offset_of!`](https://doc.rust-lang.org/stable/std/mem/macro.offset_of.html)
  - [`slice::first_chunk`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.first_chunk)
  - [`slice::first_chunk_mut`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.first_chunk_mut)
  - [`slice::split_first_chunk`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.split_first_chunk)
  - [`slice::split_first_chunk_mut`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.split_first_chunk_mut)
  - [`slice::last_chunk`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.last_chunk)
  - [`slice::last_chunk_mut`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.last_chunk_mut)
  - [`slice::split_last_chunk`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.split_last_chunk)
  - [`slice::split_last_chunk_mut`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.split_last_chunk_mut)
  - [`slice::chunk_by`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.chunk_by)
  - [`slice::chunk_by_mut`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.chunk_by_mut)
  - [`Bound::map`](https://doc.rust-lang.org/stable/std/ops/enum.Bound.html#method.map)
  - [`File::create_new`](https://doc.rust-lang.org/stable/std/fs/struct.File.html#method.create_new)
  - [`Mutex::clear_poison`](https://doc.rust-lang.org/stable/std/sync/struct.Mutex.html#method.clear_poison)
  - [`RwLock::clear_poison`](https://doc.rust-lang.org/stable/std/sync/struct.RwLock.html#method.clear_poison)
    Cargo
  -----
  - [Extend the build directive syntax with `cargo::`.](https://github.com/rust-lang/cargo/pull/12201/)
  - [Stabilize metadata `id` format as `PackageIDSpec`.](https://github.com/rust-lang/cargo/pull/12914/)
  - [Pull out `cargo-util-schemas` as a crate.](https://github.com/rust-lang/cargo/pull/13178/)
  - [Strip all debuginfo when debuginfo is not requested.](https://github.com/rust-lang/cargo/pull/13257/)
  - [Inherit jobserver from env for all kinds of runners.](https://github.com/rust-lang/cargo/pull/12776/)
  - [Deprecate rustc plugin support in cargo.](https://github.com/rust-lang/cargo/pull/13248/)
    Rustdoc
  -----
  - [Allows links in markdown headings.](https://github.com/rust-lang/rust/pull/117662/)
  - [Search for tuples and unit by type with `()`.](https://github.com/rust-lang/rust/pull/118194/)
  - [Clean up the source sidebar's hide button.](https://github.com/rust-lang/rust/pull/119066/)
  - [Prevent JS injection from `localStorage`.](https://github.com/rust-lang/rust/pull/120250/)
    Misc
  ----
  - [Recommend version-sorting for all sorting in style guide.](https://github.com/rust-lang/rust/pull/115046/)

Files

/usr/bin/rust-gdb
/usr/bin/rust-gdbgui
/usr/bin/rust-lldb
/usr/bin/rustc
/usr/bin/rustdoc
/usr/lib/librustc_driver-267ec3a8065af621.so
/usr/lib/libstd-0a8afa3d8246aadc.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/riscv64gc-unknown-linux-gnu
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/bin
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/bin/gcc-ld
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/bin/gcc-ld/ld.lld
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/bin/gcc-ld/ld64.lld
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/bin/gcc-ld/lld-link
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/bin/gcc-ld/wasm-ld
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/bin/rust-lld
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libaddr2line-26c6274fa8a02137.rlib
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libadler-8697d4829b56e1a2.rlib
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/liballoc-bc9c8bf5e431dd63.rlib
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libcfg_if-17a3fb31ae513ac9.rlib
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libcompiler_builtins-c8364622bdfeac3f.rlib
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libcore-855f7bdbabd0b703.rlib
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libgetopts-2d9be82111d7ead4.rlib
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libgimli-608aeffaf4430c70.rlib
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libhashbrown-9d2ca0dc7583fabd.rlib
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/liblibc-5ce793a0ac1200da.rlib
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libmemchr-f43d1be45f4eeada.rlib
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libminiz_oxide-e2c61d13aff845dd.rlib
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libobject-57925d77ee8f0021.rlib
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libpanic_abort-8e7c48bcf2ccc1f9.rlib
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libpanic_unwind-7460b75a030ac1e5.rlib
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libproc_macro-d973371105fb9056.rlib
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libprofiler_builtins-46a88b11580c0ed1.rlib
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/librustc_demangle-a7e4ab00f57521ec.rlib
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/librustc_std_workspace_alloc-edcf792fa61b318e.rlib
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/librustc_std_workspace_core-e522394e0dd131d2.rlib
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/librustc_std_workspace_std-58c442216134f5fb.rlib
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libstd-0a8afa3d8246aadc.rlib
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libstd-0a8afa3d8246aadc.so
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libstd_detect-221253d06448532d.rlib
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libsysroot-8259ad2195b0904a.rlib
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libtest-f806db5b64c6deb9.rlib
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libunicode_width-12b9a851a3ac63c3.rlib
/usr/lib/rustlib/riscv64gc-unknown-linux-gnu/lib/libunwind-782f70b3991e4db6.rlib
/usr/share/doc/packages/rust1.77
/usr/share/doc/packages/rust1.77/CONTRIBUTING.md
/usr/share/doc/packages/rust1.77/README.md
/usr/share/doc/packages/rust1.77/RELEASES.md
/usr/share/licenses/rust1.77
/usr/share/licenses/rust1.77/COPYRIGHT
/usr/share/licenses/rust1.77/LICENSE-APACHE
/usr/share/licenses/rust1.77/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 Apr 30 23:58:22 2024