0.6.0
Added
Changed
- Migrate
yt-dlp
from--referer "<URL>"
to new style--add-header "Referer:<URL>"
- Migrate from unmaintained
fdehau/tui
totui-rs-revival/ratatui
.
Thanks @joshka!
(#4, #5)
See also fdehau/tui-rs#654 - Sort
use
groups andmod
in a standardized fashion: (#6)use std::...
use <external>::...
use
internal- Relative without
self::
for submodules - Relative with
super::...
where in the same logical group;
e.g.ui/layout
usessuper::style
, as both are tightly coupled - Absolute with
crate::...
- Relative without
mod ...
- Switch from
lazy_static
toonce_cell
untilstd::sync::LazyLock
is released.
(#7) - Swallow
futures::future::Aborted
explicitly. (#8)
Fixed
- Change
maybe_join
to propagate future output result. (#3)
New Contributors
Full Changelog: 0.5.2...v0.6.0