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/syn
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2.0.111
Choose a base ref
...
head repository: dtolnay/syn
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2.0.112
Choose a head ref
  • 14 commits
  • 10 files changed
  • 3 contributors

Commits on Nov 28, 2025

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

Commits on Dec 11, 2025

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

Commits on Dec 13, 2025

  1. Resolve ptr_offset_by_literal pedantic clippy lints

        warning: use of `offset` with a literal
           --> src/buffer.rs:163:33
            |
        163 |         unsafe { Cursor::create(self.ptr.offset(1), self.scope) }
            |                                 ^^^^^^^^^^^^^^^^^^
            |
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#ptr_offset_by_literal
            = note: `-W clippy::ptr-offset-by-literal` implied by `-W clippy::pedantic`
            = help: to override `-W clippy::pedantic` add `#[allow(clippy::ptr_offset_by_literal)]`
        help: use `add` instead
            |
        163 -         unsafe { Cursor::create(self.ptr.offset(1), self.scope) }
        163 +         unsafe { Cursor::create(self.ptr.add(1), self.scope) }
            |
    
        warning: use of `offset` with a literal
           --> src/buffer.rs:342:33
            |
        342 |             self.ptr = unsafe { self.ptr.offset(-1) };
            |                                 ^^^^^^^^^^^^^^^^^^^
            |
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#ptr_offset_by_literal
        help: use `sub` instead
            |
        342 -             self.ptr = unsafe { self.ptr.offset(-1) };
        342 +             self.ptr = unsafe { self.ptr.sub(1) };
            |
    dtolnay committed Dec 13, 2025
    Configuration menu
    Copy the full SHA
    91456f5 View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2025

  1. Configuration menu
    Copy the full SHA
    184920a View commit details
    Browse the repository at this point in the history
  2. Add rust-version metadata

    dtolnay committed Dec 14, 2025
    Configuration menu
    Copy the full SHA
    77e56b5 View commit details
    Browse the repository at this point in the history

Commits on Dec 15, 2025

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

Commits on Dec 16, 2025

  1. Configuration menu
    Copy the full SHA
    2cc3385 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1949 from heiher/issue-1948

    tests: Use smallvec and thin_vec from rustc_data_structures
    dtolnay authored Dec 16, 2025
    Configuration menu
    Copy the full SHA
    1f92a93 View commit details
    Browse the repository at this point in the history

Commits on Dec 19, 2025

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

Commits on Dec 20, 2025

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

Commits on Dec 28, 2025

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

Commits on Dec 30, 2025

  1. Fix LitByte::new().

    VictorArcium committed Dec 30, 2025
    Configuration menu
    Copy the full SHA
    0c4bea1 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1951 from VictorArcium/vt/fix-lit-byte

    Fix LitByte::new().
    dtolnay authored Dec 30, 2025
    Configuration menu
    Copy the full SHA
    ca22ce0 View commit details
    Browse the repository at this point in the history
  3. Release 2.0.112

    dtolnay committed Dec 30, 2025
    Configuration menu
    Copy the full SHA
    f8f2a42 View commit details
    Browse the repository at this point in the history
Loading