v0.17.0
github-actions
released this
03 Jul 19:28
·
112 commits
to master
since this release
Changed
-
Improved the help. (#143)
Now you can read the detailed help with
--help
whilecargo equip -h
still prints a short and concise overview. -
Changed the format. (#144)
- Moved
__bundled
to__cargo_equip::crates
. - Moved
__bundled::*::__macros
to__cargo_equip::macros
. - Now creates
__cargo_equip::prelude
and glob-uses it instead of declaring__prelude_for_main_crate!
. - Unified
__bundled::*::{__external_local_inner_macros, __pseudo_extern_prelude}
into__cargo_equip::preludes
.
//! # Bundled libraries //! ︙ pub use __cargo_equip::prelude::*; // ︙ // The following code was expanded by `cargo-equip`. mod __cargo_equip { pub(crate) mod crates {/* … */} pub(crate) mod macros {/* … */} pub(crate) mod prelude {/* … */} mod preludes {/* … */} } #[cfg_attr(any(), rustfmt::skip)] const _: () = { // ︙ };
- Moved
-
Updated rust-analyzer to
2021-06-28
. (#145)