Skip to content

Commit a8f739b

Browse files
committed
bump dependencies
1 parent 15390c3 commit a8f739b

File tree

10 files changed

+146
-106
lines changed

10 files changed

+146
-106
lines changed

Cargo.lock

+128-88
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

oryx-ebpf/Cargo.lock

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

oryx-tui/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ edition.workspace = true
1010

1111
[dependencies]
1212
crossterm = { version = "0.28", default-features = false }
13-
ratatui = "0.28"
14-
tui-big-text = "0.6"
15-
tui-input = "0.10"
13+
ratatui = "0.29"
14+
tui-big-text = "0.7"
15+
tui-input = "0.11"
1616
libc = "0.2"
1717
aya = "0.13"
1818
oryx-common = { path = "../oryx-common" }

oryx-tui/src/filter/direction.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ impl TrafficDirectionFilter {
121121
];
122122

123123
let table = Table::new(filters, widths)
124-
.highlight_style(Style::new().bg(ratatui::style::Color::DarkGray));
124+
.row_highlight_style(Style::new().bg(ratatui::style::Color::DarkGray));
125125

126126
frame.render_widget(
127127
Block::new()

oryx-tui/src/filter/link.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ impl LinkFilter {
102102
])];
103103

104104
let table = Table::new(link_filters, widths)
105-
.highlight_style(Style::new().bg(ratatui::style::Color::DarkGray));
105+
.row_highlight_style(Style::new().bg(ratatui::style::Color::DarkGray));
106106

107107
frame.render_widget(
108108
Block::new()

oryx-tui/src/filter/network.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ impl NetworkFilter {
134134
];
135135

136136
let network_filters_table = Table::new(network_filters, widths)
137-
.highlight_style(Style::new().bg(ratatui::style::Color::DarkGray));
137+
.row_highlight_style(Style::new().bg(ratatui::style::Color::DarkGray));
138138

139139
frame.render_widget(
140140
Block::new()

oryx-tui/src/filter/transport.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ impl TransportFilter {
119119
];
120120

121121
let table = Table::new(transport_filters, widths)
122-
.highlight_style(Style::new().bg(ratatui::style::Color::DarkGray));
122+
.row_highlight_style(Style::new().bg(ratatui::style::Color::DarkGray));
123123

124124
frame.render_widget(
125125
Block::new()

oryx-tui/src/interface.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ impl Interface {
209209
.style(Style::new().bold())
210210
.bottom_margin(1),
211211
)
212-
.highlight_style(Style::new().bg(ratatui::style::Color::DarkGray))
212+
.row_highlight_style(Style::new().bg(ratatui::style::Color::DarkGray))
213213
.column_spacing(3);
214214

215215
frame.render_widget(

oryx-tui/src/section/firewall.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,7 @@ impl Firewall {
682682
let table = Table::new(rows, widths)
683683
.column_spacing(2)
684684
.flex(Flex::SpaceBetween)
685-
.highlight_style(Style::default().bg(Color::DarkGray))
685+
.row_highlight_style(Style::default().bg(Color::DarkGray))
686686
.header(
687687
Row::new(vec![
688688
Line::from("Name").centered().blue(),

oryx-tui/src/section/inspection.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,7 @@ impl Inspection {
527527
)
528528
.column_spacing(2)
529529
.flex(Flex::SpaceBetween)
530-
.highlight_style(Style::new().bg(ratatui::style::Color::DarkGray))
530+
.row_highlight_style(Style::new().bg(ratatui::style::Color::DarkGray))
531531
.highlight_spacing(HighlightSpacing::Always)
532532
.block(Block::default().padding(Padding::uniform(1)));
533533

0 commit comments

Comments
 (0)