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

cargo1.56-1.56.1-150300.7.6.1 RPM for ppc64le

From OpenSuSE Leap 15.4 for ppc64le

Name: cargo1.56 Distribution: SUSE Linux Enterprise 15
Version: 1.56.1 Vendor: SUSE LLC <https://www.suse.com/>
Release: 150300.7.6.1 Build date: Wed Jan 19 14:24:51 2022
Group: Development/Languages/Rust Build host: sangiovese
Size: 14212468 Source RPM: rust1.56-1.56.1-150300.7.6.1.src.rpm
Packager: https://www.suse.com/
Url: https://www.rust-lang.org
Summary: The Rust package manager
Cargo downloads dependencies of Rust projects and compiles it.

Provides

Requires

License

Apache-2.0 OR MIT

Changelog

* Tue Jan 18 2022 william.brown@suse.com
  - bsc#1194767 - CVE-2022-21658 - Resolve race condition in std::fs::remove_dir_all
    - 0002-Fix-CVE-2022-21658-for-UNIX-like.patch
    - 0003-Fix-CVE-2022-21658-for-WASI.patch
* Wed Dec 08 2021 william.brown@suse.com
  - Remove un-needed dependency on git
  - Specfile clean ups
  - Resolve issue with test execution on leap15.3
  - Improve build performance
* Fri Nov 26 2021 guillaume.gardet@opensuse.org
  - Disable ccache on armv6, since it fails with signal 7
* Tue Nov 16 2021 aplanas@suse.com
  - Update documentation to explain how to run the tests
  - Add %check section to test the compiler
  - Remove `disable-option-checking` parameter, to make errors explicit
  - Remove duplicated host / build entries
  - Use new debug parameters for ./configure
  - Add fix_bootstrap_vendor.patch to keep the current .cargo/config file
  - Drop sed replacement for Python3.
  - Add fix_function-names_test_for_gdb_10_1.patch to fix debuginfo tests
  - Add fix_alloc-optimisation_is_only_for_rust_llvm.patch to fix codegen test
* Fri Nov 12 2021 william.brown@suse.com
  - Add conflict on 1.55 in cargo to resolve obs issue.
* Tue Nov 02 2021 william.brown@suse.com
  Version 1.56.1 (2021-11-01)
  - New lints to detect the presence of bidirectional-override Unicode
    codepoints in the compiled source code ([CVE-2021-42574])
    [CVE-2021-42574]: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42574
    Version 1.56.0 (2021-10-21)
    Language
  --------
  - [The 2021 Edition is now stable.][rust#88100]
    See [the edition guide][rust-2021-edition-guide] for more details.
  - [The pattern in `binding @ pattern` can now also introduce new bindings.][rust#85305]
  - [Union field access is permitted in `const fn`.][rust#85769]
    [rust-2021-edition-guide]: https://doc.rust-lang.org/nightly/edition-guide/rust-2021/index.html
    Compiler
  --------
  - [Upgrade to LLVM 13.][rust#87570]
  - [Support memory, address, and thread sanitizers on aarch64-unknown-freebsd.][rust#88023]
  - [Allow specifying a deployment target version for all iOS targets][rust#87699]
  - [Warnings can be forced on with `--force-warn`.][rust#87472]
    This feature is primarily intended for usage by `cargo fix`, rather than end users.
  - [Promote `aarch64-apple-ios-sim` to Tier 2\*.][rust#87760]
  - [Add `powerpc-unknown-freebsd` at Tier 3\*.][rust#87370]
  - [Add `riscv32imc-esp-espidf` at Tier 3\*.][rust#87666]
    \* Refer to Rust's [platform support page][platform-support-doc] for more
    information on Rust's tiered platform support.
    Libraries
  ---------
  - [Allow writing of incomplete UTF-8 sequences via stdout/stderr on Windows.][rust#83342]
    The Windows console still requires valid Unicode, but this change allows
    splitting a UTF-8 character across multiple write calls. This allows, for
    instance, programs that just read and write data buffers (e.g. copying a file
    to stdout) without regard for Unicode or character boundaries.
  - [Prefer `AtomicU{64,128}` over Mutex for Instant backsliding protection.][rust#83093]
    For this use case, atomics scale much better under contention.
  - [Implement `Extend<(A, B)>` for `(Extend<A>, Extend<B>)`][rust#85835]
  - [impl Default, Copy, Clone for std::io::Sink and std::io::Empty][rust#86744]
  - [`impl From<[(K, V); N]>` for all collections.][rust#84111]
  - [Remove `P: Unpin` bound on impl Future for Pin.][rust#81363]
  - [Treat invalid environment variable names as non-existent.][rust#86183]
    Previously, the environment functions would panic if given a variable name
    with an internal null character or equal sign (`=`). Now, these functions will
    just treat such names as non-existent variables, since the OS cannot represent
    the existence of a variable with such a name.
    Stabilised APIs
  - [`std::os::unix::fs::chroot`]
  - [`UnsafeCell::raw_get`]
  - [`BufWriter::into_parts`]
  - [`core::panic::{UnwindSafe, RefUnwindSafe, AssertUnwindSafe}`]
    These APIs were previously stable in `std`, but are now also available in `core`.
  - [`Vec::shrink_to`]
  - [`String::shrink_to`]
  - [`OsString::shrink_to`]
  - [`PathBuf::shrink_to`]
  - [`BinaryHeap::shrink_to`]
  - [`VecDeque::shrink_to`]
  - [`HashMap::shrink_to`]
  - [`HashSet::shrink_to`]
    These APIs are now usable in const contexts:
  - [`std::mem::transmute`]
  - [`[T]::first`][`slice::first`]
  - [`[T]::split_first`][`slice::split_first`]
  - [`[T]::last`][`slice::last`]
  - [`[T]::split_last`][`slice::split_last`]
    Cargo
  -----
  - [Cargo supports specifying a minimum supported Rust version in Cargo.toml.][`rust-version`]
    This has no effect at present on dependency version selection.
    We encourage crates to specify their minimum supported Rust version, and we encourage CI systems
    that support Rust code to include a crate's specified minimum version in the test matrix for that
    crate by default.
    Compatibility notes
  - [Update to new argument parsing rules on Windows.][rust#87580]
    This adjusts Rust's standard library to match the behavior of the standard
    libraries for C/C++. The rules have changed slightly over time, and this PR
    brings us to the latest set of rules (changed in 2008).
  - [Disallow the aapcs calling convention on aarch64][rust#88399]
    This was already not supported by LLVM; this change surfaces this lack of
    support with a better error message.
  - [Make `SEMICOLON_IN_EXPRESSIONS_FROM_MACROS` warn by default][rust#87385]
  - [Warn when an escaped newline skips multiple lines.][rust#87671]
  - [Calls to `libc::getpid` / `std::process::id` from `Command::pre_exec`
    may return different values on glibc <= 2.24.][rust#81825]
    Rust now invokes the `clone3` system call directly, when available, to use new functionality
    available via that system call. Older versions of glibc cache the result of `getpid`, and only
    update that cache when calling glibc's clone/fork functions, so a direct system call bypasses
    that cache update. glibc 2.25 and newer no longer cache `getpid` for exactly this reason.
    Internal changes
    These changes provide no direct user facing benefits, but represent significant
    improvements to the internals and overall performance of rustc
    and related tools.
  - [LLVM is compiled with PGO in published x86_64-unknown-linux-gnu artifacts.][rust#88069]
    This improves the performance of most Rust builds.
  - [Unify representation of macros in internal data structures.][rust#88019]
    This change fixes a host of bugs with the handling of macros by the compiler,
    as well as rustdoc.

Files

/usr/bin/cargo
/usr/share/cargo
/usr/share/cargo/registry
/usr/share/licenses/cargo1.56
/usr/share/licenses/cargo1.56/LICENSE-APACHE
/usr/share/licenses/cargo1.56/LICENSE-MIT
/usr/share/licenses/cargo1.56/LICENSE-THIRD-PARTY
/usr/share/man/man1/cargo-bench.1.gz
/usr/share/man/man1/cargo-build.1.gz
/usr/share/man/man1/cargo-check.1.gz
/usr/share/man/man1/cargo-clean.1.gz
/usr/share/man/man1/cargo-doc.1.gz
/usr/share/man/man1/cargo-fetch.1.gz
/usr/share/man/man1/cargo-fix.1.gz
/usr/share/man/man1/cargo-generate-lockfile.1.gz
/usr/share/man/man1/cargo-help.1.gz
/usr/share/man/man1/cargo-init.1.gz
/usr/share/man/man1/cargo-install.1.gz
/usr/share/man/man1/cargo-locate-project.1.gz
/usr/share/man/man1/cargo-login.1.gz
/usr/share/man/man1/cargo-metadata.1.gz
/usr/share/man/man1/cargo-new.1.gz
/usr/share/man/man1/cargo-owner.1.gz
/usr/share/man/man1/cargo-package.1.gz
/usr/share/man/man1/cargo-pkgid.1.gz
/usr/share/man/man1/cargo-publish.1.gz
/usr/share/man/man1/cargo-run.1.gz
/usr/share/man/man1/cargo-rustc.1.gz
/usr/share/man/man1/cargo-rustdoc.1.gz
/usr/share/man/man1/cargo-search.1.gz
/usr/share/man/man1/cargo-test.1.gz
/usr/share/man/man1/cargo-tree.1.gz
/usr/share/man/man1/cargo-uninstall.1.gz
/usr/share/man/man1/cargo-update.1.gz
/usr/share/man/man1/cargo-vendor.1.gz
/usr/share/man/man1/cargo-verify-project.1.gz
/usr/share/man/man1/cargo-version.1.gz
/usr/share/man/man1/cargo-yank.1.gz
/usr/share/man/man1/cargo.1.gz


Generated by rpm2html 1.8.1

Fabrice Bellet, Sat Mar 9 16:49:08 2024