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

rust1.73-1.73.0-2.3 RPM for armv6hl

From OpenSuSE Ports Tumbleweed for armv6hl

Name: rust1.73 Distribution: openSUSE Tumbleweed
Version: 1.73.0 Vendor: openSUSE
Release: 2.3 Build date: Sat Feb 10 04:48:52 2024
Group: Development/Languages/Rust Build host: i01-armsrv2
Size: 172916270 Source RPM: rust1.73-1.73.0-2.3.nosrc.rpm
Packager: http://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 Oct 06 2023 William Brown <william.brown@suse.com>
  Version 1.73.0 (2023-10-05)
    Language
  --------
  - [Uplift `clippy::fn_null_check` lint as `useless_ptr_null_checks`.](https://github.com/rust-lang/rust/pull/111717/)
  - [Make `noop_method_call` warn by default.](https://github.com/rust-lang/rust/pull/111916/)
  - [Support interpolated block for `try` and `async` in macros.](https://github.com/rust-lang/rust/pull/112953/)
  - [Make `unconditional_recursion` lint detect recursive drops.](https://github.com/rust-lang/rust/pull/113902/)
  - [Future compatibility warning for some impls being incorrectly considered not overlapping.](https://github.com/rust-lang/rust/pull/114023/)
  - [The `invalid_reference_casting` lint is now **deny-by-default** (instead of allow-by-default)](https://github.com/rust-lang/rust/pull/112431)
    Compiler
  --------
  - [Write version information in a `.comment` section like GCC/Clang.](https://github.com/rust-lang/rust/pull/97550/)
  - [Add documentation on v0 symbol mangling.](https://github.com/rust-lang/rust/pull/97571/)
  - [Stabilize `extern "thiscall"` and `"thiscall-unwind"` ABIs.](https://github.com/rust-lang/rust/pull/114562/)
  - [Only check outlives goals on impl compared to trait.](https://github.com/rust-lang/rust/pull/109356/)
  - [Infer type in irrefutable slice patterns with fixed length as array.](https://github.com/rust-lang/rust/pull/113199/)
  - [Discard default auto trait impls if explicit ones exist.](https://github.com/rust-lang/rust/pull/113312/)
  - Add several new tier 3 targets:
    - [`aarch64-unknown-teeos`](https://github.com/rust-lang/rust/pull/113480/)
    - [`csky-unknown-linux-gnuabiv2`](https://github.com/rust-lang/rust/pull/113658/)
    - [`riscv64-linux-android`](https://github.com/rust-lang/rust/pull/112858/)
    - [`riscv64gc-unknown-hermit`](https://github.com/rust-lang/rust/pull/114004/)
    - [`x86_64-unikraft-linux-musl`](https://github.com/rust-lang/rust/pull/113411/)
    - [`x86_64-unknown-linux-ohos`](https://github.com/rust-lang/rust/pull/113061/)
  - [Add `wasm32-wasi-preview1-threads` as a tier 2 target.](https://github.com/rust-lang/rust/pull/112922/)
    Refer to Rust's [platform support page][platform-support-doc]
    for more information on Rust's tiered platform support.
    Libraries
  ---------
  - [Add `Read`, `Write` and `Seek` impls for `Arc<File>`.](https://github.com/rust-lang/rust/pull/94748/)
  - [Merge functionality of `io::Sink` into `io::Empty`.](https://github.com/rust-lang/rust/pull/98154/)
  - [Implement `RefUnwindSafe` for `Backtrace`](https://github.com/rust-lang/rust/pull/100455/)
  - [Make `ExitStatus` implement `Default`](https://github.com/rust-lang/rust/pull/106425/)
  - [`impl SliceIndex<str> for (Bound<usize>, Bound<usize>)`](https://github.com/rust-lang/rust/pull/111081/)
  - [Change default panic handler message format.](https://github.com/rust-lang/rust/pull/112849/)
  - [Cleaner `assert_eq!` & `assert_ne!` panic messages.](https://github.com/rust-lang/rust/pull/111071/)
  - [Correct the (deprecated) Android `stat` struct definitions.](https://github.com/rust-lang/rust/pull/113130/)
    Stabilized APIs
  - [Unsigned `{integer}::div_ceil`](https://doc.rust-lang.org/stable/std/primitive.u32.html#method.div_ceil)
  - [Unsigned `{integer}::next_multiple_of`](https://doc.rust-lang.org/stable/std/primitive.u32.html#method.next_multiple_of)
  - [Unsigned `{integer}::checked_next_multiple_of`](https://doc.rust-lang.org/stable/std/primitive.u32.html#method.checked_next_multiple_of)
  - [`std::ffi::FromBytesUntilNulError`](https://doc.rust-lang.org/stable/std/ffi/struct.FromBytesUntilNulError.html)
  - [`std::os::unix::fs::chown`](https://doc.rust-lang.org/stable/std/os/unix/fs/fn.chown.html)
  - [`std::os::unix::fs::fchown`](https://doc.rust-lang.org/stable/std/os/unix/fs/fn.fchown.html)
  - [`std::os::unix::fs::lchown`](https://doc.rust-lang.org/stable/std/os/unix/fs/fn.lchown.html)
  - [`LocalKey::<Cell<T>>::get`](https://doc.rust-lang.org/stable/std/thread/struct.LocalKey.html#method.get)
  - [`LocalKey::<Cell<T>>::set`](https://doc.rust-lang.org/stable/std/thread/struct.LocalKey.html#method.set)
  - [`LocalKey::<Cell<T>>::take`](https://doc.rust-lang.org/stable/std/thread/struct.LocalKey.html#method.take)
  - [`LocalKey::<Cell<T>>::replace`](https://doc.rust-lang.org/stable/std/thread/struct.LocalKey.html#method.replace)
  - [`LocalKey::<RefCell<T>>::with_borrow`](https://doc.rust-lang.org/stable/std/thread/struct.LocalKey.html#method.with_borrow)
  - [`LocalKey::<RefCell<T>>::with_borrow_mut`](https://doc.rust-lang.org/stable/std/thread/struct.LocalKey.html#method.with_borrow_mut)
  - [`LocalKey::<RefCell<T>>::set`](https://doc.rust-lang.org/stable/std/thread/struct.LocalKey.html#method.set-1)
  - [`LocalKey::<RefCell<T>>::take`](https://doc.rust-lang.org/stable/std/thread/struct.LocalKey.html#method.take-1)
  - [`LocalKey::<RefCell<T>>::replace`](https://doc.rust-lang.org/stable/std/thread/struct.LocalKey.html#method.replace-1)
    These APIs are now stable in const contexts:
  - [`rc::Weak::new`](https://doc.rust-lang.org/stable/alloc/rc/struct.Weak.html#method.new)
  - [`sync::Weak::new`](https://doc.rust-lang.org/stable/alloc/sync/struct.Weak.html#method.new)
  - [`NonNull::as_ref`](https://doc.rust-lang.org/stable/core/ptr/struct.NonNull.html#method.as_ref)
    Cargo
  -----
  - [Encode URL params correctly for `SourceId` in `Cargo.lock`.](https://github.com/rust-lang/cargo/pull/12280/)
  - [Bail out an error when using `cargo::` in custom build script.](https://github.com/rust-lang/cargo/pull/12332/)
    Misc
  ----
    Compatibility Notes
  - [Update the minimum external LLVM to 15.](https://github.com/rust-lang/rust/pull/114148/)
  - [Check for non-defining uses of return position `impl Trait`.](https://github.com/rust-lang/rust/pull/112842/)

Files

/usr/bin/rust-gdb
/usr/bin/rust-gdbgui
/usr/bin/rust-lldb
/usr/bin/rustc
/usr/bin/rustdoc
/usr/lib/librustc_driver-8ab36223c6e84441.so
/usr/lib/libstd-2dc3c4c6ce16fd9c.so
/usr/lib/libtest-02552343048f5263.so
/usr/lib/rustlib
/usr/lib/rustlib/arm-unknown-linux-gnueabihf
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/bin
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/bin/gcc-ld
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/bin/gcc-ld/ld.lld
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/bin/gcc-ld/ld64.lld
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/bin/gcc-ld/lld-link
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/bin/gcc-ld/wasm-ld
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/bin/rust-lld
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/lib
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/lib/libaddr2line-902e081e9b8fc361.rlib
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/lib/libadler-f03ab22cfb4222c0.rlib
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/lib/liballoc-bcedc8dd82565256.rlib
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/lib/libcfg_if-e92ae8c0caad1b7c.rlib
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/lib/libcompiler_builtins-ce43eef80eaf15eb.rlib
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/lib/libcore-dcedd276bf0d5754.rlib
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/lib/libgetopts-529928e8fc7f1fd2.rlib
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/lib/libgimli-1733ee2ec0b61a37.rlib
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/lib/libhashbrown-f7a70e7e24b9ab43.rlib
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/lib/liblibc-8fbb8e2ff7667bc7.rlib
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/lib/libmemchr-9fd61075dbf7ad8c.rlib
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/lib/libminiz_oxide-52f1532df3f68ca1.rlib
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/lib/libobject-9e10309be8256017.rlib
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/lib/libpanic_abort-8abb57d77d86c984.rlib
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/lib/libpanic_unwind-1853dd4476ae8f37.rlib
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/lib/libproc_macro-e30344598e347cea.rlib
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/lib/librustc_demangle-b2df9123c18c5087.rlib
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/lib/librustc_std_workspace_alloc-30083c892cb4063f.rlib
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/lib/librustc_std_workspace_core-2d9da01bc6583db9.rlib
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/lib/librustc_std_workspace_std-05cd5525323aa775.rlib
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/lib/libstd-2dc3c4c6ce16fd9c.rlib
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/lib/libstd-2dc3c4c6ce16fd9c.so
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/lib/libstd_detect-9945bf103bef91a3.rlib
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/lib/libsysroot-a331bef3831d3f7b.rlib
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/lib/libtest-02552343048f5263.rlib
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/lib/libtest-02552343048f5263.so
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/lib/libunicode_width-7277ee271fc000b7.rlib
/usr/lib/rustlib/arm-unknown-linux-gnueabihf/lib/libunwind-6b932b54b649330c.rlib
/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/share/doc/packages/rust1.73
/usr/share/doc/packages/rust1.73/CONTRIBUTING.md
/usr/share/doc/packages/rust1.73/README.md
/usr/share/doc/packages/rust1.73/RELEASES.md
/usr/share/licenses/rust1.73
/usr/share/licenses/rust1.73/COPYRIGHT
/usr/share/licenses/rust1.73/LICENSE-APACHE
/usr/share/licenses/rust1.73/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 Apr 27 00:31:59 2024