Skip to content

Commit

Permalink
bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
pythops committed Dec 9, 2024
1 parent 15390c3 commit a8f739b
Show file tree
Hide file tree
Showing 10 changed files with 146 additions and 106 deletions.
216 changes: 128 additions & 88 deletions Cargo.lock

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions oryx-ebpf/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions oryx-tui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ edition.workspace = true

[dependencies]
crossterm = { version = "0.28", default-features = false }
ratatui = "0.28"
tui-big-text = "0.6"
tui-input = "0.10"
ratatui = "0.29"
tui-big-text = "0.7"
tui-input = "0.11"
libc = "0.2"
aya = "0.13"
oryx-common = { path = "../oryx-common" }
Expand Down
2 changes: 1 addition & 1 deletion oryx-tui/src/filter/direction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ impl TrafficDirectionFilter {
];

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

frame.render_widget(
Block::new()
Expand Down
2 changes: 1 addition & 1 deletion oryx-tui/src/filter/link.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ impl LinkFilter {
])];

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

frame.render_widget(
Block::new()
Expand Down
2 changes: 1 addition & 1 deletion oryx-tui/src/filter/network.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ impl NetworkFilter {
];

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

frame.render_widget(
Block::new()
Expand Down
2 changes: 1 addition & 1 deletion oryx-tui/src/filter/transport.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ impl TransportFilter {
];

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

frame.render_widget(
Block::new()
Expand Down
2 changes: 1 addition & 1 deletion oryx-tui/src/interface.rs
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ impl Interface {
.style(Style::new().bold())
.bottom_margin(1),
)
.highlight_style(Style::new().bg(ratatui::style::Color::DarkGray))
.row_highlight_style(Style::new().bg(ratatui::style::Color::DarkGray))
.column_spacing(3);

frame.render_widget(
Expand Down
2 changes: 1 addition & 1 deletion oryx-tui/src/section/firewall.rs
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,7 @@ impl Firewall {
let table = Table::new(rows, widths)
.column_spacing(2)
.flex(Flex::SpaceBetween)
.highlight_style(Style::default().bg(Color::DarkGray))
.row_highlight_style(Style::default().bg(Color::DarkGray))
.header(
Row::new(vec![
Line::from("Name").centered().blue(),
Expand Down
2 changes: 1 addition & 1 deletion oryx-tui/src/section/inspection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ impl Inspection {
)
.column_spacing(2)
.flex(Flex::SpaceBetween)
.highlight_style(Style::new().bg(ratatui::style::Color::DarkGray))
.row_highlight_style(Style::new().bg(ratatui::style::Color::DarkGray))
.highlight_spacing(HighlightSpacing::Always)
.block(Block::default().padding(Padding::uniform(1)));

Expand Down

0 comments on commit a8f739b

Please sign in to comment.