Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.0.35
->1.0.109
Release Notes
dtolnay/syn (syn)
v1.0.109
Compare Source
v1.0.108
Compare Source
LitStr::value
(#1381, thanks @ModProg)v1.0.107
Compare Source
-Zrustdoc-scrape-examples
on docs.rs for nowv1.0.106
Compare Source
v1.0.105
Compare Source
dyn
andimpl
type syntax (#1245)v1.0.104
Compare Source
PathArguments::is_none()
v1.0.103
Compare Source
PartialOrd
forCursor
(#1236, #1237, thanks @CAD97)v1.0.102
Compare Source
TokenBuffer
(#1223, thanks @CAD97)v1.0.101
Compare Source
v1.0.100
Compare Source
for<> || -> T {…}
(#1212, https://github.com/rust-lang/rust/issues/97362)dyn*
provisional syntax (#1213, https://github.com/rust-lang/rust/issues/91611)Struct { #[attr] .. }
(#1214)static async
andstatic async move
closures (#1215, https://github.com/rust-lang/rust/issues/62290)v1.0.99
Compare Source
v1.0.98
Compare Source
v1.0.97
Compare Source
v1.0.96
Compare Source
punct_mut()
method onsyn::punctuated::Pair
to returnOption<&mut P>
(#1183)v1.0.95
Compare Source
v1.0.94
Compare Source
v1.0.93
Compare Source
Some
means something unusual in the expression namespace of the scope wherecustom_keyword
is invoked (#1171, thanks @zakarumych)v1.0.92
Compare Source
v1.0.91
Compare Source
v1.0.90
Compare Source
Update recommended exhaustive matching idiom to use
non_exhaustive_omitted_patterns
lint:v1.0.89
Compare Source
mut self
in a bare fn type (#1148)v1.0.88
Compare Source
..
pattern in pattern oflet
(#1136)for<…>
lifetime introducer on closures (#1135)Nothing
(#1144)v1.0.87
Compare Source
v1.0.86
Compare Source
v1.0.85
Compare Source
token()
method to each variant of syn::Lit to expose the underlying token representation with original formattingv1.0.84
Compare Source
parse_quote_spanned!
macro which is a combinationparse_quote!
+quote_spanned!
v1.0.83
Compare Source
impl <Thing<>>::Trait for Type {}
(#1109)#[attr] let pat = val else { return }
(#1110)v1.0.82
Compare Source
::
disambiguator:Fn::() -> !
(#1096)v1.0.81
Compare Source
v1.0.80
Compare Source
~const
syntax in where-clauses (#1083, tracking issue https://github.com/rust-lang/rust/issues/67792)v1.0.79
Compare Source
+
indyn Trait
syntax, including bare (non-dyn
) pre-2018 trait object syntax (#1075, #1077, #1078, #1079, #1080, #1081)v1.0.78
Compare Source
+
in the bounds ofimpl Trait
type (#1073)v1.0.77
Compare Source
v1.0.76
Compare Source
let
–else
syntax (#1050, #1057)<E>::V {..}
(#1058, #1059)v1.0.75
Compare Source
v1.0.74
Compare Source
for<'a> dyn Trait<'a>
syntax; the correct representation isdyn for<'a> Trait<'a>
(#1042)v1.0.73
Compare Source
v1.0.72
Compare Source
v1.0.71
Compare Source
v1.0.70
Compare Source
|| .. .method()
(#1019)v1.0.69
Compare Source
v1.0.68
Compare Source
LexError
on conversion tosyn::Error
(#1006)v1.0.67
Compare Source
v1.0.66
Compare Source
full
mode (#978)v1.0.65
Compare Source
v1.0.64
Compare Source
clippy::expl_impl_clone_on_copy
pedantic lint in downstream custom token types (#976)v1.0.63
Compare Source
v1.0.62
Compare Source
v1.0.61
Compare Source
Punctuated
API (#970, thanks @osa1)Lifetime::span
andLifetime::set_span
accessors (#971)v1.0.60
Compare Source
Provide an idiom for testing exhaustiveness of pattern matches on
Expr
,Type
,Pat
,Item
,ForeignItem
,TraitItem
, andImplItem
(#694)The above is the only supported idiom for exhaustive matching of those enum. Do not write anything differently as it is not supported.
The conditional compilation on match-arms lets us fail your tests but not break your library when adding a variant. You will be notified by a test failure when a variant is added, so that you can add code to handle it, but your library will continue to compile and work for downstream users in the interim.
v1.0.59
Compare Source
v1.0.58
Compare Source
Allow literals to parse as a const generic path argument even without "full" feature enabled (#951)
v1.0.57
Compare Source
const fn
(#949)v1.0.56
Compare Source
Error::into_compile_error
v1.0.55
Compare Source
T<$ty>
(#944, #945)v1.0.54
Compare Source
impl
items with macro metavariable in the trait path:impl $trait for Type {...}
(#942)v1.0.53
Compare Source
impl !Trait {...}
syntax (#936)v1.0.52
Compare Source
unsafe extern
block syntax (#918)unsafe mod
syntax (#919)const {...}
block syntax (#921)v1.0.51
Compare Source
v1.0.50
Compare Source
doc(cfg(...))
on feature gated APIs for docs.rs-rendered documentation (#925)v1.0.48
Compare Source
v1.0.47
Compare Source
v1.0.46
Compare Source
#[derive(::serde::Serialize)]
(#909)v1.0.45
Compare Source
v1.0.44
Compare Source
v1.0.43
Compare Source
v1.0.42
Compare Source
v1.0.41
Compare Source
.
in a field access position, e.g.let _ = obj.-0.9E999999
(#895, thanks @sameer)parse_macro_input!
with a Parser function rather than type having a Parse impl (#896, thanks @sbrocket)v1.0.40
Compare Source
9e99e999
(#893)v1.0.39
Compare Source
v1.0.38
Compare Source
v1.0.37
Compare Source
Handle shebang in a way that matches rustc 1.46+ (#876, https://github.com/rust-lang/rust/pull/71487, https://github.com/rust-lang/rust/pull/73596)
Accept
tuple.0. 0
as a tuple indexing expression (#877)v1.0.36
Compare Source
Configuration
📅 Schedule: Branch creation - "after 9am on Saturday" in timezone Asia/Tokyo, 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.
This PR was generated by Mend Renovate. View the repository job log.