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/unicode-ident
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.0.19
Choose a base ref
...
head repository: dtolnay/unicode-ident
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.0.20
Choose a head ref
  • 13 commits
  • 7 files changed
  • 3 contributors

Commits on Sep 16, 2025

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

Commits on Sep 25, 2025

  1. Unpin unicode 17 in CI, revert to latest

    Pinning to 17 is no longer necessary, latest now points to 17
    Reverts 17da3fe
    Marcondiro authored Sep 25, 2025
    Configuration menu
    Copy the full SHA
    0adbc19 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #39 from Marcondiro/patch-1

    Unpin unicode 17 in CI, revert to latest
    dtolnay authored Sep 25, 2025
    Configuration menu
    Copy the full SHA
    0f4ef3f View commit details
    Browse the repository at this point in the history

Commits on Oct 6, 2025

  1. store ascii start/continue bitmaps in u128 instead of slices of bool

    Reduce execution time by 44% in 0%-nonascii case and by 32% in 10%-nonascii.
    Reduce the static data size ~200 bytes.
    Marcondiro committed Oct 6, 2025
    Configuration menu
    Copy the full SHA
    62dfaa1 View commit details
    Browse the repository at this point in the history

Commits on Oct 21, 2025

  1. Configuration menu
    Copy the full SHA
    2820323 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0325fd8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0cf482e View commit details
    Browse the repository at this point in the history
  4. Update benchmark for PR 40

    dtolnay committed Oct 21, 2025
    Configuration menu
    Copy the full SHA
    75d45cd View commit details
    Browse the repository at this point in the history
  5. Disable unreadable_literal pedantic clippy lint

        warning: long literal lacking separators
          --> src/tables.rs:12:38
           |
        12 | pub(crate) const ASCII_START: u128 = 0x7fffffe07fffffe0000000000000000;
           |                                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider: `0x07ff_fffe_07ff_fffe_0000_0000_0000_0000`
           |
           = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unreadable_literal
           = note: `-W clippy::unreadable-literal` implied by `-W clippy::pedantic`
           = help: to override `-W clippy::pedantic` add `#[allow(clippy::unreadable_literal)]`
    
        warning: long literal lacking separators
          --> src/tables.rs:13:41
           |
        13 | pub(crate) const ASCII_CONTINUE: u128 = 0x7fffffe87fffffe03ff000000000000;
           |                                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider: `0x07ff_fffe_87ff_fffe_03ff_0000_0000_0000`
           |
           = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unreadable_literal
    dtolnay committed Oct 21, 2025
    Configuration menu
    Copy the full SHA
    eb553bf View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    4d75a0e View commit details
    Browse the repository at this point in the history
  7. Merge pull request #41 from dtolnay/zero

    Extract const promoted zero to a named static
    dtolnay authored Oct 21, 2025
    Configuration menu
    Copy the full SHA
    ad5a6cf View commit details
    Browse the repository at this point in the history
  8. Update asm snippet

    dtolnay committed Oct 21, 2025
    Configuration menu
    Copy the full SHA
    940104c View commit details
    Browse the repository at this point in the history
  9. Release 1.0.20

    dtolnay committed Oct 21, 2025
    Configuration menu
    Copy the full SHA
    12f0a68 View commit details
    Browse the repository at this point in the history
Loading