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

Commits on Jan 25, 2021

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

Commits on Feb 3, 2021

  1. Configuration menu
    Copy the full SHA
    5c10cfd View commit details
    Browse the repository at this point in the history
  2. SpanlessEq for Box

    dtolnay committed Feb 3, 2021
    Configuration menu
    Copy the full SHA
    a7beb3d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    dd32a88 View commit details
    Browse the repository at this point in the history

Commits on Feb 4, 2021

  1. Configuration menu
    Copy the full SHA
    146965a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8c92202 View commit details
    Browse the repository at this point in the history

Commits on Feb 20, 2021

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

Commits on Feb 23, 2021

  1. Replace assertions in Puctuated with more helpful panic messages

    Debugging proc macros is very difficult as we can't easily get
    backtraces into the proc macro code. Improved error messages will
    hopefully give some hint to the user on what the problem is.
    osa1 committed Feb 23, 2021
    Configuration menu
    Copy the full SHA
    8a75e45 View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2021

  1. Resolve inconsistent_struct_constructor style lint

        error: inconsistent struct constructor
            --> src/item.rs:1497:16
             |
        1497 |               Ok(Signature {
             |  ________________^
        1498 | |                 constness,
        1499 | |                 asyncness,
        1500 | |                 unsafety,
        ...    |
        1508 | |                 generics,
        1509 | |             })
             | |_____________^ help: try: `Signature { constness, asyncness, unsafety, abi, fn_token, ident, generics, paren_token, inputs, variadic, output }`
             |
             = note: `-D clippy::inconsistent-struct-constructor` implied by `-D clippy::all`
             = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#inconsistent_struct_constructor
    dtolnay committed Feb 26, 2021
    Configuration menu
    Copy the full SHA
    799c21b View commit details
    Browse the repository at this point in the history
  2. Ignore incorrect suggestion from manual_map lint

    rust-lang/rust-clippy#6795
    
        error: manual implementation of `Option::map`
            --> src/item.rs:1194:22
             |
        1194 |               let ty = if let Some(eq_token) = input.parse()? {
             |  ______________________^
        1195 | |                 Some((eq_token, input.parse::<Type>()?))
        1196 | |             } else {
        1197 | |                 None
        1198 | |             };
             | |_____________^ help: try this: `input.parse()?.map(|eq_token| (eq_token, input.parse::<Type>()?))`
             |
             = note: `-D clippy::manual-map` implied by `-D clippy::all`
             = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_map
    dtolnay committed Feb 26, 2021
    Configuration menu
    Copy the full SHA
    0bd6d57 View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2021

  1. Merge pull request #970 from osa1/helpful_asserts

    Replace assertions in Puctuated with more helpful panic messages
    dtolnay authored Mar 5, 2021
    Configuration menu
    Copy the full SHA
    a782687 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2b0c9bd View commit details
    Browse the repository at this point in the history
  3. Eliminate line break in middle of panic message from PR 970

    This makes the complete error message more easily greppable.
    dtolnay committed Mar 5, 2021
    Configuration menu
    Copy the full SHA
    f6460f4 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    38d99a7 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    9001d9f View commit details
    Browse the repository at this point in the history
  6. Merge pull request #971 from dtolnay/lifetime-span

    Add Lifetime span getter and setter
    dtolnay authored Mar 5, 2021
    Configuration menu
    Copy the full SHA
    de1a51d View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    b2f1da2 View commit details
    Browse the repository at this point in the history
  8. Release 1.0.61

    dtolnay committed Mar 5, 2021
    Configuration menu
    Copy the full SHA
    d131635 View commit details
    Browse the repository at this point in the history
Loading