Skip to content

chore(deps): update rust crate syn to v2.0.117#60

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/syn-2.x-lockfile
Open

chore(deps): update rust crate syn to v2.0.117#60
renovate[bot] wants to merge 1 commit intomainfrom
renovate/syn-2.x-lockfile

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented May 5, 2024

This PR contains the following updates:

Package Type Update Change
syn dependencies patch 2.0.312.0.117

Release Notes

dtolnay/syn (syn)

v2.0.117

Compare Source

  • Fix parsing of self:: pattern in first function argument (#​1970)

v2.0.116

Compare Source

  • Optimize parse_fn_arg_or_variadic for less lookahead on erroneous receiver (#​1968)

v2.0.115

Compare Source

  • Enable GenericArgument::Constraint parsing in non-full mode (#​1966)

v2.0.114

Compare Source

  • Make std dependencies more easily discoverable in source code (#​1956, thanks @​tamird)

v2.0.113

Compare Source

  • Allow parsing TypeParam with colon not followed by any type param bounds (#​1953, thanks @​wyfo)

v2.0.112

Compare Source

v2.0.111

Compare Source

  • Allow first argument of braced!, bracketed!, parenthesized! to be an otherwise unused variable (#​1946)

v2.0.110

Compare Source

  • Tweaks to improve build speed (#​1939, thanks @​dishmaker)
  • Make syn::ext::IdentExt::unraw available without "parsing" feature (#​1940)
  • Support parsing syn::Meta followed by => (#​1944)

v2.0.109

Compare Source

v2.0.108

Compare Source

  • Parse unrecognized or invalid literals as Lit::Verbatim (#​1925)

v2.0.107

Compare Source

  • Improve panic message when constructing a LitInt, LitFloat, or Lit from invalid syntax (#​1917)
  • Improve panic message on Punctuated index out of bounds (#​1922)

v2.0.106

Compare Source

v2.0.105

Compare Source

v2.0.104

Compare Source

  • Disallow attributes on range expression (#​1872)

v2.0.103

Compare Source

  • Insert parentheses around binary operation with attribute (#​1871)

v2.0.102

Compare Source

  • Fix printing of nested Expr::Index and Expr::Tuple in non-full mode (#​1869)

v2.0.101

Compare Source

  • Improve TypeGenerics::as_turbofish to return longer-lived return value (#​1861)

v2.0.100

Compare Source

  • Add Visit::visit_token_stream, VisitMut::visit_token_stream_mut, Fold::fold_token_stream for processing TokenStream during syntax tree traversals (#​1852)

v2.0.99

Compare Source

  • Documentation improvements

v2.0.98

Compare Source

  • Allow lifetimes in function pointer return values in ParseStream::call and Punctuated parsers (#​1847)

v2.0.97

Compare Source

  • Documentation improvements

v2.0.96

Compare Source

v2.0.95

Compare Source

  • Fix parenthesization of struct literals in let-chains (#​1832)

v2.0.94

Compare Source

v2.0.93

Compare Source

v2.0.92

Compare Source

  • Fix parenthesization of jumps inside ranges (#​1798)

v2.0.91

Compare Source

v2.0.90

Compare Source

  • Fix automatic parenthesization of subexpressions containing outer attributes, such as (#[attr] thing).field (#​1785)
  • Fix automatic parenthesization of function calls via a struct field, such as (thing.field)() and thing.0() (#​1786)

v2.0.89

Compare Source

v2.0.88

Compare Source

  • Improve error recovery in parse_str (#​1783)

v2.0.87

Compare Source

v2.0.86

Compare Source

  • Support peeking the end of a parse stream (#​1689)
  • Allow parse_quote! to produce Vec<Attribute> (#​1775)

v2.0.85

Compare Source

  • Preserve extern static unsafety in ForeignItem::Verbatim (#​1773)

v2.0.84

Compare Source

v2.0.83

Compare Source

  • Documentation improvements

v2.0.82

Compare Source

  • Provide Parse impls for PreciseCapture and CapturedParam (#​1757, #​1758)
  • Support parsing unsafe attributes (#​1759)
  • Add Fold and VisitMut methods for Vec<Attribute> (#​1762)

v2.0.81

Compare Source

  • Add TypeParamBound::PreciseCapture to represent precise capture syntax impl Trait + use<'a, T> (#​1752, #​1753, #​1754)

v2.0.80

Compare Source

  • Add Expr::RawAddr (#​1743)
  • Reject precise captures and ~const in inappropriate syntax positions (#​1747)
  • Reject trait bound containing only precise capture (#​1748)

v2.0.79

Compare Source

  • Fix infinite loop on parsing chained ranges (#​1741)
  • Fix panic in parsing use items containing absolute paths (#​1742)

v2.0.78

Compare Source

  • Fix infinite loop on chained comparison (#​1739)

v2.0.77

Compare Source

  • Support parsing Expr::Tuple in non-"full" mode (#​1727)

v2.0.76

Compare Source

  • Enforce that tail call become keyword is followed by an expression (#​1725)

v2.0.75

Compare Source

  • Automatically fill in missing turbofish when printing ExprPath and other paths in expression position (#​1722)

v2.0.74

Compare Source

  • Fix "temporary is dropped and runs the destructor for type `impl Iterator`" regression affecting certain use of Generics iterator methods (#​1719)

v2.0.73

Compare Source

v2.0.72

Compare Source

v2.0.71

Compare Source

v2.0.70

Compare Source

v2.0.69

Compare Source

  • Correctly parenthesize labeled loops inside a break value (#​1692)
  • Add Punctuated::get and get_mut (#​1693)

v2.0.68

Compare Source

  • Improve panic location when parse_quote! parses invalid syntax (#​1690, thanks @​stepancheg)
  • More efficient peek implementation for Group and Lifetime (#​1687)

v2.0.67

Compare Source

  • Produce more accurate error message locations for errors located at the end of a nested group (#​1679, #​1680)
  • Support peeking LitCStr in ParseStream::peek (#​1682)

v2.0.66

Compare Source

  • Allow braced structs when parsing ExprLet (#​1671)

v2.0.65

Compare Source

v2.0.64

Compare Source

  • Support using ParseBuffer across catch_unwind (#​1646)
  • Validate that the expression in a let-else ends in brace as required by rustc (#​1648, #​1649)
  • Legalize invalid const generic arguments by wrapping in braces (#​1654, #​1655)
  • Fix some expression precedence edge cases involving break and return in loop headers (#​1656)
  • Always print closure bodies with a brace when the closure has an explicit return type (#​1658)
  • Automatically insert necessary parentheses in ToTokens for Expr when required by expression precedence (#​1659)
  • Support struct literal syntax in match guard expressions (#​1662)

v2.0.63

Compare Source

  • Parse and print long if-else-if chains without reliance on deep recursion to avoid overflowing stack (#​1644, #​1645)

v2.0.62

Compare Source

  • Reject invalid unparenthesized range and comparison operator expressions (#​1642, #​1643)

v2.0.61

Compare Source

  • Check for legal binding name in the ident of Pat::Ident (#​1627)
  • Resolve unexpected_cfgs warning (#​1635)

v2.0.60

Compare Source

  • Improve how None-delimited groups are counted by peek (#​1625)

v2.0.59

Compare Source

  • Parse c"…" and cr"…" C-string literal syntax as Lit::CStr (#​1502)

v2.0.58

Compare Source

  • Support $ in custom_punctuation! macro (#​1611)

v2.0.57

Compare Source

  • Eliminate dependency on quote when built with default-features disabled and the "proc-macro" feature enabled (#​1608, thanks @​BD103)

v2.0.56

Compare Source

  • Apply RUSTC_WORKSPACE_WRAPPER when deciding whether to run nightly-only tests (#​1605)

v2.0.55

Compare Source

  • Restore compatibility with rustc 1.56 through 1.59 (#​1603)

v2.0.54

Compare Source

  • Fix dead code warning in generated code when using custom_keyword! with syn's "printing" feature disabled (#​1602)

v2.0.53

Compare Source

  • Implement Copy, Clone, and ToTokens for syn::parse::Nothing (#​1597)

v2.0.52

Compare Source

  • Add an expression parser that uses match-arm's boundary rules (#​1593)

v2.0.51

Compare Source

  • Resolve non_local_definitions warnings in generated code under rustc 1.78-nightly

v2.0.50

Compare Source

  • Fix unused_imports warnings when compiled by rustc 1.78

v2.0.49

Compare Source

  • Improve error location when parsing from an empty string literal using LitStr::parse (#​1590)

v2.0.48

Compare Source

  • Improve error message on unexpected token after else (#​1578)

v2.0.47

Compare Source

  • Improve error messages related to proc_macro::LexError (#​1575)

v2.0.46

Compare Source

  • Update proc-macro2 to fix caching issue when using a rustc-wrapper such as sccache

v2.0.45

Compare Source

  • Parse unsupported expressions in enum discriminants of DeriveInput as Expr::Verbatim in non-"full" mode, instead of error (#​1513)
  • Support parsing PatType with parse_quote! (#​1573)

v2.0.44

Compare Source

  • Documentation improvements

v2.0.43

Compare Source

  • Insert trailing comma if not already present when printing a 1-tuple in pattern position (#​1553)

v2.0.42

Compare Source

  • Documentation improvements

v2.0.41

Compare Source

  • Support parsing syn::Field in parse_quote! (#​1548)

v2.0.40

Compare Source

v2.0.39

Compare Source

  • Fix parsing of return expression in match guards (#​1528)
  • Improve error message on labeled loop as value expression for break (#​1531)

v2.0.38

Compare Source

  • Fix "method 'peek' has an incompatible type for trait" error when defining bool as a custom keyword (#​1518, thanks @​Vanille-N)

v2.0.37

Compare Source

  • Work around incorrect future compatibility warning in rustc 1.74.0-nightly

v2.0.36

Compare Source

  • Restore compatibility with --generate-link-to-definition documentation builds (#​1514)

v2.0.35

Compare Source

  • Make rust-analyzer produce preferred brackets for invocations of Token! macro (#​1510, #​1512)

v2.0.34

Compare Source

  • Documentation improvements

v2.0.33

Compare Source

  • Special handling for the (/*ERROR*/) placeholder that rustc uses for macros that fail to expand

v2.0.32

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 8810965 to 344e1e4 Compare May 7, 2024 04:18
@renovate renovate bot changed the title fix(deps): update rust crate syn to v2.0.60 fix(deps): update rust crate syn to v2.0.61 May 7, 2024
@renovate renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 344e1e4 to 056e8c8 Compare May 11, 2024 04:10
@renovate renovate bot changed the title fix(deps): update rust crate syn to v2.0.61 fix(deps): update rust crate syn to v2.0.62 May 11, 2024
@renovate renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 056e8c8 to 8340712 Compare May 11, 2024 20:17
@renovate renovate bot changed the title fix(deps): update rust crate syn to v2.0.62 fix(deps): update rust crate syn to v2.0.63 May 11, 2024
@renovate renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 8340712 to 16e5844 Compare May 16, 2024 18:01
@renovate renovate bot changed the title fix(deps): update rust crate syn to v2.0.63 fix(deps): update rust crate syn to v2.0.64 May 16, 2024
@renovate renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 16e5844 to 0552f24 Compare May 20, 2024 02:09
@renovate renovate bot changed the title fix(deps): update rust crate syn to v2.0.64 fix(deps): update rust crate syn to v2.0.65 May 20, 2024
@renovate renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 0552f24 to 3da2759 Compare May 24, 2024 02:07
@renovate renovate bot changed the title fix(deps): update rust crate syn to v2.0.65 fix(deps): update rust crate syn to v2.0.66 May 24, 2024
@renovate renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 3da2759 to f3ca1e6 Compare June 21, 2024 01:56
@renovate renovate bot changed the title fix(deps): update rust crate syn to v2.0.66 fix(deps): update rust crate syn to v2.0.67 Jun 21, 2024
@renovate renovate bot force-pushed the renovate/syn-2.x-lockfile branch from f3ca1e6 to c7343c7 Compare June 24, 2024 00:51
@renovate renovate bot changed the title fix(deps): update rust crate syn to v2.0.67 fix(deps): update rust crate syn to v2.0.68 Jun 24, 2024
@renovate renovate bot force-pushed the renovate/syn-2.x-lockfile branch from c7343c7 to ae5c1cd Compare July 6, 2024 23:18
@renovate renovate bot changed the title fix(deps): update rust crate syn to v2.0.68 fix(deps): update rust crate syn to v2.0.69 Jul 6, 2024
@renovate renovate bot force-pushed the renovate/syn-2.x-lockfile branch from ae5c1cd to 20e89e8 Compare July 8, 2024 22:10
@renovate renovate bot changed the title fix(deps): update rust crate syn to v2.0.69 fix(deps): update rust crate syn to v2.0.70 Jul 8, 2024
@renovate renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 20e89e8 to 5486113 Compare July 12, 2024 13:52
@renovate renovate bot changed the title fix(deps): update rust crate syn to v2.0.70 fix(deps): update rust crate syn to v2.0.71 Jul 12, 2024
@renovate renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 5486113 to 4898dfa Compare July 22, 2024 00:29
@renovate renovate bot changed the title fix(deps): update rust crate syn to v2.0.71 fix(deps): update rust crate syn to v2.0.72 Jul 22, 2024
@renovate renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 4898dfa to 3874cb9 Compare August 11, 2024 08:22
@renovate renovate bot changed the title fix(deps): update rust crate syn to v2.0.72 fix(deps): update rust crate syn to v2.0.73 Aug 11, 2024
@renovate renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 3874cb9 to 4fc1521 Compare August 11, 2024 17:15
@renovate renovate bot changed the title fix(deps): update rust crate syn to v2.0.73 fix(deps): update rust crate syn to v2.0.74 Aug 11, 2024
@renovate renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 4fc1521 to 736ad4c Compare August 17, 2024 21:43
@renovate renovate bot changed the title fix(deps): update rust crate syn to v2.0.74 fix(deps): update rust crate syn to v2.0.75 Aug 17, 2024
@renovate renovate bot changed the title fix(deps): update rust crate syn to v2.0.81 fix(deps): update rust crate syn to v2.0.82 Oct 20, 2024
@renovate renovate bot force-pushed the renovate/syn-2.x-lockfile branch from e76f16e to 1eac9a3 Compare October 23, 2024 20:31
@renovate renovate bot changed the title fix(deps): update rust crate syn to v2.0.82 fix(deps): update rust crate syn to v2.0.83 Oct 23, 2024
@renovate renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 1eac9a3 to e39747e Compare October 23, 2024 23:01
@renovate renovate bot changed the title fix(deps): update rust crate syn to v2.0.83 fix(deps): update rust crate syn to v2.0.85 Oct 23, 2024
@renovate renovate bot force-pushed the renovate/syn-2.x-lockfile branch from e39747e to d2f700a Compare November 1, 2024 02:29
@renovate renovate bot changed the title fix(deps): update rust crate syn to v2.0.85 fix(deps): update rust crate syn to v2.0.86 Nov 1, 2024
@renovate renovate bot force-pushed the renovate/syn-2.x-lockfile branch from d2f700a to a57ff7c Compare November 2, 2024 20:06
@renovate renovate bot changed the title fix(deps): update rust crate syn to v2.0.86 fix(deps): update rust crate syn to v2.0.87 Nov 2, 2024
@renovate renovate bot force-pushed the renovate/syn-2.x-lockfile branch from a57ff7c to 906f8fb Compare November 21, 2024 04:58
@renovate renovate bot changed the title fix(deps): update rust crate syn to v2.0.87 fix(deps): update rust crate syn to v2.0.88 Nov 21, 2024
@renovate renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 906f8fb to 2f35b22 Compare November 21, 2024 07:59
@renovate renovate bot changed the title fix(deps): update rust crate syn to v2.0.88 fix(deps): update rust crate syn to v2.0.89 Nov 21, 2024
@renovate renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 2f35b22 to 41a8242 Compare November 30, 2024 02:09
@renovate renovate bot changed the title fix(deps): update rust crate syn to v2.0.89 fix(deps): update rust crate syn to v2.0.90 Nov 30, 2024
@renovate renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 41a8242 to 5fb8371 Compare December 22, 2024 05:07
@renovate renovate bot changed the title fix(deps): update rust crate syn to v2.0.90 fix(deps): update rust crate syn to v2.0.91 Dec 22, 2024
@renovate renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 5fb8371 to 9e78391 Compare December 27, 2024 01:20
@renovate renovate bot changed the title fix(deps): update rust crate syn to v2.0.91 fix(deps): update rust crate syn to v2.0.92 Dec 27, 2024
@renovate renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 9e78391 to 0c11a59 Compare December 28, 2024 21:22
@renovate renovate bot changed the title fix(deps): update rust crate syn to v2.0.92 fix(deps): update rust crate syn to v2.0.93 Dec 28, 2024
@renovate renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 0c11a59 to 197cb34 Compare January 7, 2025 11:52
@renovate renovate bot changed the title fix(deps): update rust crate syn to v2.0.93 fix(deps): update rust crate syn to v2.0.95 Jan 7, 2025
@renovate renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 197cb34 to fd89713 Compare January 10, 2025 06:34
@renovate renovate bot changed the title fix(deps): update rust crate syn to v2.0.95 fix(deps): update rust crate syn to v2.0.96 Jan 10, 2025
@renovate renovate bot force-pushed the renovate/syn-2.x-lockfile branch from fd89713 to 45595cf Compare February 1, 2025 21:34
@renovate renovate bot changed the title fix(deps): update rust crate syn to v2.0.96 fix(deps): update rust crate syn to v2.0.97 Feb 1, 2025
@renovate renovate bot force-pushed the renovate/syn-2.x-lockfile branch from 45595cf to af05593 Compare February 2, 2025 09:32
@renovate renovate bot changed the title fix(deps): update rust crate syn to v2.0.97 fix(deps): update rust crate syn to v2.0.98 Feb 2, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants