Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
280 changes: 185 additions & 95 deletions Cargo.lock

Large diffs are not rendered by default.

9 changes: 6 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibtop"
version = "0.1.7"
version = "1.0.0"
edition = "2021"
authors = ["info@jannik-straube.de"]
description = "Real-time terminal monitor for InfiniBand networks"
Expand All @@ -12,12 +12,15 @@ keywords = ["infiniband", "monitoring", "tui", "network", "rdma"]
categories = ["command-line-utilities", "network-programming"]

[dependencies]
ratatui = "0.26"
crossterm = "0.27"
ratatui = "0.29"
crossterm = "0.28"
rand = "0.9.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
hostname = "0.4"

[dev-dependencies]
tempfile = "3.14"

[lints.clippy]
pedantic = "deny"
84 changes: 0 additions & 84 deletions src/discovery/fake.rs

This file was deleted.

2 changes: 0 additions & 2 deletions src/discovery/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
pub(crate) mod fake;

use crate::types::{AdapterInfo, PortCounters, PortInfo, PortState};

const MLX5_DATA_MULTIPLIER: u64 = 4; // mlx5 reports in 32-bit words
Expand Down
Loading
Loading