-
-
Notifications
You must be signed in to change notification settings - Fork 373
Comparing changes
Open a pull request
base repository: dtolnay/syn
base: 1.0.95
head repository: dtolnay/syn
compare: 1.0.96
- 18 commits
- 10 files changed
- 2 contributors
Commits on May 17, 2022
-
Fix new broken_intra_doc_links warnings
warning: unresolved link to `parse_macro_input` --> src/error.rs:28:37 | 28 | /// When parsing macro input, the [`parse_macro_input!`] macro handles the | ^^^^^^^^^^^^^^^^^^ no item named `parse_macro_input` in scope | = note: `#[warn(rustdoc::broken_intra_doc_links)]` on by default = note: `macro_rules` named `parse_macro_input` exists in this crate, but it is not in scope at this link's location warning: unresolved link to `parse_macro_input` --> src/parse.rs:246:13 | 246 | /// - The [`parse_macro_input!`] macro if parsing input of a procedural macro; | ^^^^^^^^^^^^^^^^^^ no item named `parse_macro_input` in scope | = note: `macro_rules` named `parse_macro_input` exists in this crate, but it is not in scope at this link's location warning: unresolved link to `parse_macro_input` --> src/error.rs:190:15 | 190 | /// The [`parse_macro_input!`] macro provides a convenient way to invoke | ^^^^^^^^^^^^^^^^^^ no item named `parse_macro_input` in scope | = note: `macro_rules` named `parse_macro_input` exists in this crate, but it is not in scope at this link's locationConfiguration menu - View commit details
-
Copy full SHA for 50805a9 - Browse repository at this point
Copy the full SHA 50805a9View commit details
Commits on May 20, 2022
-
Update test suite to nightly-2022-05-20
error[E0277]: the trait bound `&rustc_ast::tokenstream::TokenTree: SpanlessEq` is not satisfied --> tests/common/eq.rs:510:16 | 510 | if SpanlessEq::eq(&this, &other) { | ^^^^^^^^^^^^^^ the trait `SpanlessEq` is not implemented for `&rustc_ast::tokenstream::TokenTree` | = help: the trait `SpanlessEq` is implemented for `rustc_ast::tokenstream::TokenTree` error[E0271]: type mismatch resolving `<CursorRef<'_> as Iterator>::Item == rustc_ast::tokenstream::TokenTree` --> tests/common/eq.rs:519:25 | 519 | doc_comment(*style, *symbol, &mut other_trees) | ^^^^^^^^^^^ expected enum `rustc_ast::tokenstream::TokenTree`, found `&rustc_ast::tokenstream::TokenTree` | note: required by a bound in `doc_comment` --> tests/common/eq.rs:537:31 | 534 | fn doc_comment( | ----------- required by a bound in this ... 537 | trees: &mut impl Iterator<Item = TokenTree>, | ^^^^^^^^^^^^^^^^ required by this bound in `doc_comment` error[E0271]: type mismatch resolving `<CursorRef<'_> as Iterator>::Item == rustc_ast::tokenstream::TokenTree` --> tests/common/eq.rs:522:25 | 522 | doc_comment(*style, *symbol, &mut this_trees) | ^^^^^^^^^^^ expected enum `rustc_ast::tokenstream::TokenTree`, found `&rustc_ast::tokenstream::TokenTree` | note: required by a bound in `doc_comment` --> tests/common/eq.rs:537:31 | 534 | fn doc_comment( | ----------- required by a bound in this ... 537 | trees: &mut impl Iterator<Item = TokenTree>, | ^^^^^^^^^^^^^^^^ required by this bound in `doc_comment` error[E0277]: can't compare `&Symbol` with `Symbol` --> tests/common/eq.rs:560:23 | 560 | })) if symbol == sym::doc => {} | ^^ no implementation for `&Symbol == Symbol` | = help: the trait `PartialEq<Symbol>` is not implemented for `&Symbol` = help: the trait `PartialEq` is implemented for `Symbol`Configuration menu - View commit details
-
Copy full SHA for e077055 - Browse repository at this point
Copy the full SHA e077055View commit details -
Fix needless_borrow lint in test
error: this expression creates a reference which is immediately dereferenced by the compiler --> tests/common/eq.rs:572:38 | 572 | is_escaped_literal_token(&token, unescaped) && trees.next().is_none() | ^^^^^^ help: change this to: `token` | = note: `-D clippy::needless-borrow` implied by `-D clippy::all` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrowConfiguration menu - View commit details
-
Copy full SHA for 7c9f307 - Browse repository at this point
Copy the full SHA 7c9f307View commit details
Commits on May 21, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 0910d57 - Browse repository at this point
Copy the full SHA 0910d57View commit details
Commits on May 22, 2022
-
Use new name of eval order dependence lint
warning: lint `clippy::eval_order_dependence` has been renamed to `clippy::mixed_read_write_in_expression` --> src/lib.rs:261:5 | 261 | clippy::eval_order_dependence, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `clippy::mixed_read_write_in_expression` | = note: `#[warn(renamed_and_removed_lints)]` on by defaultConfiguration menu - View commit details
-
Copy full SHA for 4951e8e - Browse repository at this point
Copy the full SHA 4951e8eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6234202 - Browse repository at this point
Copy the full SHA 6234202View commit details -
Lints move back and forth from pedantic to non-pedantic all the time, so whatever is here is definitely out of date and not particularly meaningful.
Configuration menu - View commit details
-
Copy full SHA for 5b0adb1 - Browse repository at this point
Copy the full SHA 5b0adb1View commit details
Commits on May 24, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 9ccdbf1 - Browse repository at this point
Copy the full SHA 9ccdbf1View commit details -
Switch to imports_granularity=Item style for test rustc_ast imports
This avoids this large block of imports getting rewrapped every time imports change, which made it hard to see what was being added/removed.
Configuration menu - View commit details
-
Copy full SHA for 396aa22 - Browse repository at this point
Copy the full SHA 396aa22View commit details -
Configuration menu - View commit details
-
Copy full SHA for f4e9c62 - Browse repository at this point
Copy the full SHA f4e9c62View commit details -
Configuration menu - View commit details
-
Copy full SHA for 952b167 - Browse repository at this point
Copy the full SHA 952b167View commit details
Commits on May 25, 2022
-
Configuration menu - View commit details
-
Copy full SHA for f14a572 - Browse repository at this point
Copy the full SHA f14a572View commit details
Commits on May 30, 2022
-
Configuration menu - View commit details
-
Copy full SHA for e39a204 - Browse repository at this point
Copy the full SHA e39a204View commit details -
Configuration menu - View commit details
-
Copy full SHA for ded67c8 - Browse repository at this point
Copy the full SHA ded67c8View commit details
Commits on Jun 2, 2022
-
Configuration menu - View commit details
-
Copy full SHA for f6ab69c - Browse repository at this point
Copy the full SHA f6ab69cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 45b10cb - Browse repository at this point
Copy the full SHA 45b10cbView commit details -
Merge pull request #1183 from dtolnay/punctmut
Add syn::punctuated::Pair::punct_mut
Configuration menu - View commit details
-
Copy full SHA for 0f08f63 - Browse repository at this point
Copy the full SHA 0f08f63View commit details -
Configuration menu - View commit details
-
Copy full SHA for cb8760b - Browse repository at this point
Copy the full SHA cb8760bView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff 1.0.95...1.0.96