v0.17.0
·
112 commits
to master
since this release
Changed
-
Improved the help. (#143)
Now you can read the detailed help with
--helpwhilecargo equip -hstill prints a short and concise overview. -
Changed the format. (#144)
- Moved
__bundledto__cargo_equip::crates. - Moved
__bundled::*::__macrosto__cargo_equip::macros. - Now creates
__cargo_equip::preludeand 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)