Skip to content

Commit a740fbf

Browse files
committed
bump dependencies
1 parent fb22955 commit a740fbf

9 files changed

Lines changed: 532 additions & 641 deletions

File tree

Cargo.lock

Lines changed: 340 additions & 589 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

oryx-ebpf/Cargo.lock

Lines changed: 159 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

oryx-tui/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ edition.workspace = true
1010

1111
[dependencies]
1212
crossterm = "0.29"
13-
ratatui = { version = "0.29", features = ["unstable-widget-ref"] }
14-
tui-big-text = "0.7"
15-
tui-input = "0.12"
13+
ratatui = { version = "0.30", features = ["unstable-widget-ref"] }
14+
tui-big-text = "0.8"
15+
tui-input = "0.15"
1616
libc = "0.2"
1717
aya = "0.13"
1818
oryx-common = { path = "../oryx-common" }
@@ -32,7 +32,7 @@ regex = "1"
3232
chrono = "0.4"
3333
strum = { version = "0.27", features = ["derive"] }
3434
anyhow = "1"
35-
branches = "0.3"
35+
branches = "0.4"
3636
cacheguard = "0.1"
3737
rustc-hash = "2.1.1"
3838
arrayvec = "0.7"

oryx-tui/src/bandwidth.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use std::thread;
66
use std::time::Duration;
77

88
use ratatui::layout::{Alignment, Constraint, Direction, Layout, Rect};
9-
use ratatui::style::{Style, Stylize};
9+
use ratatui::style::Style;
1010
use ratatui::symbols;
1111
use ratatui::widgets::{Axis, Chart, Dataset, GraphType};
1212
use ratatui::{

oryx-tui/src/filter/fuzzy.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use std::{
55
};
66

77
use ratatui::{
8-
style::{Style, Stylize},
8+
style::Style,
99
text::{Line, Span},
1010
widgets::{Cell, TableState},
1111
};

oryx-tui/src/section/alert/threat/synflood.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
use ratatui::prelude::Widget;
12
use std::net::IpAddr;
23

34
use ratatui::{
@@ -56,6 +57,6 @@ impl ratatui::widgets::WidgetRef for SynFlood {
5657
.title_alignment(Alignment::Center),
5758
);
5859

59-
table.render_ref(area, buf);
60+
table.render(area, buf);
6061
}
6162
}

oryx-tui/src/section/metrics.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,13 +169,13 @@ impl Metrics {
169169
.data(
170170
BarGroup::default().bars(&[
171171
Bar::default()
172-
.label("TCP".into())
172+
.label("TCP")
173173
.style(Style::new().fg(Color::LightYellow))
174174
.value(metric.tcp_count.try_into().unwrap())
175175
.value_style(Style::new().fg(Color::Black).bg(Color::LightYellow))
176176
.text_value(metric.tcp_count.to_string()),
177177
Bar::default()
178-
.label("UDP".into())
178+
.label("UDP")
179179
.style(Style::new().fg(Color::LightBlue))
180180
.value_style(Style::new().fg(Color::Black).bg(Color::LightBlue))
181181
.value(metric.udp_count.try_into().unwrap())

0 commit comments

Comments
 (0)