File tree 3 files changed +3
-2
lines changed
3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
11
11
* CI: Use Powershell Compress-Archive to create Windows binary zip #424 - @cyqsimon
12
12
* Exit gracefully when there is a broken pipe error #429 - @sigmaSd
13
13
* Fix breaking changes of sysinfo crate #431 - @cyqsimon
14
+ * Fix ` clippy::needless_lifetimes ` warnings on nightly #432 - @cyqsimon
14
15
15
16
## [ 0.23.0] - 2024-08-17
16
17
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ pub struct HeaderDetails<'a> {
40
40
pub paused : bool ,
41
41
}
42
42
43
- impl < ' a > HeaderDetails < ' a > {
43
+ impl HeaderDetails < ' _ > {
44
44
pub fn render ( & self , frame : & mut Frame , rect : Rect ) {
45
45
let bandwidth = self . bandwidth_string ( ) ;
46
46
let color = if self . paused {
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ pub struct Layout<'a> {
30
30
pub footer : HelpText ,
31
31
}
32
32
33
- impl < ' a > Layout < ' a > {
33
+ impl Layout < ' _ > {
34
34
fn progressive_split ( & self , rect : Rect , splits : Vec < Direction > ) -> Vec < Rect > {
35
35
splits
36
36
. into_iter ( )
You can’t perform that action at this time.
0 commit comments