- Update for the latest nightly: Stop using deprecated syntax for external doc.
- Update for the latest nightly: Fix panic in span calculation. The fix is compatible with older nightlies too.
- Fix
unused_mut
warning incmd!
macro.
Update for the latest nightly:
proc_macro_non_items
feature gate changed toproc_macro_hygiene
Update for the latest nightly:
Span::def_site
now requires separateproc_macro_def_site
feature gateuse_extern_macros
is no longer needed (since 1.30)
Update for the latest nightly due to stabilization of
proc_macro
feature:
proc_macro
feature is no longer neededuse_extern_macros
is now needed instead- Not the whole
proc_macro
API was stabilized, so implementation usesproc_macro_span
andproc_macro_diagnostics
features.
- Update for the latest nightly
- Remove explicit link to documentation
- Reimplemented
command
using newproc_macro
- Moved
command
macro impl to separate crate (it's a limitation ofproc_macro
) - Removed the flag shorthand for
cmd
macro(--foo)
- Removed auto-reffing expression in
[args]
(because args has started(?) to use IntoIterator, and&
would limit flexibility))