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/ryu
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.0.18
Choose a base ref
...
head repository: dtolnay/ryu
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.0.19
Choose a head ref
  • 13 commits
  • 11 files changed
  • 1 contributor

Commits on May 7, 2024

  1. Configuration menu
    Copy the full SHA
    30b2b75 View commit details
    Browse the repository at this point in the history

Commits on May 9, 2024

  1. Configuration menu
    Copy the full SHA
    9497fb5 View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2024

  1. Ignore cast_possible_truncation pedantic clippy lint in test

        warning: casting `usize` to `u32` may truncate the value on targets with 64-bit wide pointers
          --> tests/exhaustive.rs:20:25
           |
        20 |             let batch = counter.fetch_add(1, Ordering::Relaxed) as u32;
           |                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
           |
           = help: if this is intentional allow the lint with `#[allow(clippy::cast_possible_truncation)]` ...
           = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_possible_truncation
           = note: `-W clippy::cast-possible-truncation` implied by `-W clippy::pedantic`
           = help: to override `-W clippy::pedantic` add `#[allow(clippy::cast_possible_truncation)]`
        help: ... or use `try_from` and handle the error accordingly
           |
        20 |             let batch = u32::try_from(counter.fetch_add(1, Ordering::Relaxed));
           |                         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    dtolnay committed Jun 2, 2024
    Configuration menu
    Copy the full SHA
    6a06786 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    55825b3 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #57 from dtolnay/exhaustive

    Mark exhaustive test #[ignore] in non-cfg(exhaustive)
    dtolnay authored Jun 2, 2024
    Configuration menu
    Copy the full SHA
    92fbde0 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8234c4d View commit details
    Browse the repository at this point in the history

Commits on Aug 25, 2024

  1. Configuration menu
    Copy the full SHA
    5be6db4 View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2024

  1. Prevent upload-artifact step from causing CI failure

    This step has been failing way more than reasonable across my various repos.
    
        With the provided path, there will be 1 file uploaded
        Artifact name is valid!
        Root directory input is valid!
        Attempt 1 of 5 failed with error: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact. Retrying request in 3000 ms...
        Attempt 2 of 5 failed with error: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact. Retrying request in 6029 ms...
        Attempt 3 of 5 failed with error: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact. Retrying request in 8270 ms...
        Attempt 4 of 5 failed with error: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact. Retrying request in 12577 ms...
        Error: Failed to CreateArtifact: Failed to make request after 5 attempts: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact
    dtolnay committed Nov 9, 2024
    Configuration menu
    Copy the full SHA
    d3f7415 View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2025

  1. Remove **/*.rs.bk from project-specific gitignore

    Cargo stopped generating this in its project template 5 years ago. It
    would belong in a global gitignore instead.
    dtolnay committed Jan 23, 2025
    Configuration menu
    Copy the full SHA
    631e145 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d12f8d0 View commit details
    Browse the repository at this point in the history

Commits on Jan 28, 2025

  1. Update rand crate to 0.9

    dtolnay committed Jan 28, 2025
    Configuration menu
    Copy the full SHA
    7e4b85e View commit details
    Browse the repository at this point in the history
  2. Merge pull request #58 from dtolnay/rand

    Update rand crate to 0.9
    dtolnay authored Jan 28, 2025
    Configuration menu
    Copy the full SHA
    7bb6da1 View commit details
    Browse the repository at this point in the history
  3. Release 1.0.19

    dtolnay committed Jan 28, 2025
    Configuration menu
    Copy the full SHA
    81d9ec4 View commit details
    Browse the repository at this point in the history
Loading