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/zmij
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.0.20
Choose a base ref
...
head repository: dtolnay/zmij
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.0.21
Choose a head ref
  • 6 commits
  • 4 files changed
  • 1 contributor

Commits on Feb 12, 2026

  1. Sync to vitaut/zmij@e458b55

    dtolnay committed Feb 12, 2026
    Configuration menu
    Copy the full SHA
    3812b15 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    afc76e9 View commit details
    Browse the repository at this point in the history
  3. Sync to vitaut/zmij@f59cbcf

    dtolnay committed Feb 12, 2026
    Configuration menu
    Copy the full SHA
    1daaf0c View commit details
    Browse the repository at this point in the history
  4. Restore support for rustc older than 1.83

        error[E0658]: referencing statics in constant functions is unstable
           --> src/lib.rs:262:27
            |
        262 |         let m = unsafe { *POW10S.as_ptr().add(((i + 11) % 28) as usize) };
            |                           ^^^^^^
            |
            = note: `static` and `const` variables can refer to other `const` variables. A `const` variable, however, cannot refer to a `static` variable.
            = help: to fix this, the value can be extracted to a `const` and then used.
    
        error[E0658]: referencing statics in constant functions is unstable
           --> src/lib.rs:263:27
            |
        263 |         let h = unsafe { *HIGH_PARTS.as_ptr().add(((i + 11) / 28) as usize) };
            |                           ^^^^^^^^^^
            |
            = note: `static` and `const` variables can refer to other `const` variables. A `const` variable, however, cannot refer to a `static` variable.
            = help: to fix this, the value can be extracted to a `const` and then used.
    
        error[E0658]: referencing statics in constant functions is unstable
           --> src/lib.rs:279:34
            |
        279 |         result.lo -= ((unsafe { *FIXUPS.as_ptr().add((i >> 5) as usize) } >> (i & 31)) & 1) as u64;
            |                                  ^^^^^^
            |
            = note: `static` and `const` variables can refer to other `const` variables. A `const` variable, however, cannot refer to a `static` variable.
            = help: to fix this, the value can be extracted to a `const` and then used.
    dtolnay committed Feb 12, 2026
    Configuration menu
    Copy the full SHA
    9688213 View commit details
    Browse the repository at this point in the history
  5. Sync to vitaut/zmij@b35b64a

    dtolnay committed Feb 12, 2026
    Configuration menu
    Copy the full SHA
    ec5058e View commit details
    Browse the repository at this point in the history
  6. Release 1.0.21

    dtolnay committed Feb 12, 2026
    Configuration menu
    Copy the full SHA
    6531ba3 View commit details
    Browse the repository at this point in the history
Loading