Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dtolnay/anyhow
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.0.76
Choose a base ref
...
head repository: dtolnay/anyhow
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.0.77
Choose a head ref
  • 16 commits
  • 10 files changed
  • 2 contributors

Commits on Jan 18, 2023

  1. Enable backtrace support for >= 1.65 stable compilers

    The `std::backtrace` APIs relevant for this crate were stabilized in
    1.65. This commit makes anyhow use those API if possible.
    `std::backtrace` is preferred over the `backtrace` crate, so for 1.65+
    compilers, enabling the `backtrace` crate feature does nothing
    essentially.
    
    Previously, when a nightly compiler was used, use of `std::backtrace`
    as well as the Provider API was enabled. This commit separates those
    two APIs such that `std::backtrace` is used for nightly OR 1.65+ stable
    compilers; and the Provider API is used for nightly compilers only.
    LukasKalbertodt committed Jan 18, 2023
    Configuration menu
    Copy the full SHA
    49eeec1 View commit details
    Browse the repository at this point in the history

Commits on Dec 25, 2023

  1. Configuration menu
    Copy the full SHA
    b91db55 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #330 from dtolnay/bootstrap

    Rerun build script on RUSTC_BOOTSTRAP change
    dtolnay authored Dec 25, 2023
    Configuration menu
    Copy the full SHA
    5121cd2 View commit details
    Browse the repository at this point in the history

Commits on Dec 26, 2023

  1. Configuration menu
    Copy the full SHA
    d6acd22 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2b79af8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    53d6076 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #331 from dtolnay/backtrace

    Separate cfgs for Backtrace vs Error::provide
    dtolnay authored Dec 26, 2023
    Configuration menu
    Copy the full SHA
    cf66194 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    df47705 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #332 from dtolnay/stdbacktrace

    Rename `cfg(backtrace)` -> `cfg(std_backtrace)`
    dtolnay authored Dec 26, 2023
    Configuration menu
    Copy the full SHA
    53109e6 View commit details
    Browse the repository at this point in the history
  7. backtrace -> std_backtrace

    dtolnay committed Dec 26, 2023
    Configuration menu
    Copy the full SHA
    1a5f7c8 View commit details
    Browse the repository at this point in the history
  8. Format with rustfmt

    dtolnay committed Dec 26, 2023
    Configuration menu
    Copy the full SHA
    ad30865 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    26b0a26 View commit details
    Browse the repository at this point in the history
  10. Merge pull request #333 from dtolnay/stablebacktrace

    Turn on cfg(std_backtrace) on new enough stable rustc
    dtolnay authored Dec 26, 2023
    Configuration menu
    Copy the full SHA
    43f4af0 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    684c231 View commit details
    Browse the repository at this point in the history
  12. Touch up PR 293

    dtolnay committed Dec 26, 2023
    Configuration menu
    Copy the full SHA
    b6ac995 View commit details
    Browse the repository at this point in the history
  13. Release 1.0.77

    dtolnay committed Dec 26, 2023
    Configuration menu
    Copy the full SHA
    199c625 View commit details
    Browse the repository at this point in the history
Loading