-
-
Notifications
You must be signed in to change notification settings - Fork 368
Description
Current prerelease: syn-next = "1.0.0-rc4"
Release notes in progress:
Syn is a library for parsing Rust code, largely geared toward use in procedural macros but generally applicable as a Rust parser outside of that too.
Syn was originally a sidequest on the effort to making Serde's derive macros work on stable Rust in 2016, but has since taken off as a foundational library in its own right. These days it appears in support of diverse use cases like:
- convenient interop between Rust-based Wasm modules and JavaScript,
- easy command line interfaces,
- a polished async experience, and
- a concurrency framework for embedded real time systems.
Excitingly, the fraction of open source Rust projects that rely on Syn is still climbing aggressively (see red line). This reflects how important procedural macros are to the experience we want people to have when working with Rust — empowering everyone to build reliable and efficient software.
This 1.0 release signifies that Syn is a polished and stable library and that it offers a user experience we can stand behind as the way we recommend for all Rustaceans to write procedural macros.
Be aware that the underlying Rust language will continue to evolve. Syn is able to accommodate most kinds of Rust grammar changes via the nonexhaustive enums and Verbatim variants in the syntax tree, but we will plan to put out new major versions on a 12 to 24 month cadence to incorporate ongoing language changes as needed.
Note: in combination with this release, please see also the release notes for quote 1.0 which resolves multiple longstanding limitations of the quote macro.
Breaking changes
- Minimum required Rust version is raised from rustc 1.15 to 1.31.
Items
-
The syntax tree for function signatures has been redesigned. The types
MethodSigandFnDeclhave been unified into one typeSignaturethat is common across all varieties of function signatures. -
The syntax tree for function arguments has been redesigned. The new type is
FnArgwhich represents one argument of a function, associated function, trait function, or foreign function. Arguments of closures are no longer treated asFnArgand are simply aPatinstead. -
The
Fieldstype now implements IntoIterator, in addition to the previously existing IntoIterator impls on &Fields and &mut Fields. This may require changing.into_iter()calls to.iter()when used on a value of type &Fields. -
The representation of
Item::Macro22.0-style declarative macros have been collapsed into a single token stream pending figuring out what the syntax should be in rust-lang/rust#39412. -
Item::ExistentialandImplItem::Existentialhave been removed in favor of RFC 2515.
Expressions
-
Expr::Awaitis a new variant of expression for postfix.awaitsyntax per ongoing work on rust-lang/rust#50547. -
Expr::InPlacehas been removed as a result of RFC 2387.
Types
BareFnArgNamehas been eliminated in favor ofIdentfor representing the arguments of aType::BareFn.
Patterns
-
Pat::Oris a new variant of pattern as specified by RFC 2535. -
Pat::Typeis a new variant of pattern for type ascription as specified by RFC 2522. -
Pat::Restis a new variant of pattern representing the..pattern as specified by RFC 2707. -
The
Pat::SliceandPat::Tuplepatterns have been redesigned to accomodate RFC 2359. -
Pat::Refhas been renamed toPat::Referenceto align withExpr::ReferenceandType::Reference.
Tokens
-
The
Lit::IntandLit::Floatliteral types have been redesigned to represent arbitrarily large numbers and arbitrary suffixes. Rather than.value(), there is a.base10_digits()accessor which the caller should parse into the appropriate representation. -
The types of the token representation of the
selfandSelftokens have been renamed fromSelf_/CapSelftoSelfValue/SelfTyperespectively. This does not affect you if you are referring to them asToken![self]andToken![Self]. -
The
Lit::Verbatimliteral escape hatch now holds aproc_macro2::Literalprimitive token directly, rather than the previousLitVerbatimwrapper.
Attributes
-
The
Attribute::interpret_metamethod is removed in favor ofAttribute::parse_metawhich produces a better error. -
The variants of
Metanow contain aPathrather than a singleIdentas specified by RFC 2103. -
Function parameters now hold attributes as specified by RFC 2565.
More
-
The argument of
Path::is_identis now taken by reference. The common case of using this method with a string literal will continue to work:path.is_ident("..."). -
The type returned by
Punctuated::into_iterno longer has aPtype parameter, as it only returns sequence elements without punctuation. -
The
first,last, andlast_mutaccessors ofPunctuatednow return the elementTonly, no longer a punctuated pair. The old paired behavior of.first()can be written as.pairs().next(),.last()can be written as.pairs().next_back(), and.last_mut()can be written as.pairs_mut().next_back(). -
Various uses of
ttsas a field name in the syntax tree have been renamed totokensto eliminate the nonstandard abbreviation.
