From 8f418963d9c528f64d2b15fd91d962763f697756 Mon Sep 17 00:00:00 2001 From: Manos Pitsidianakis Date: Fri, 15 Nov 2024 11:37:58 +0200 Subject: [PATCH] Bump version to 0.4.4 Changelog: a69d398 Ugly workaround for float overflow when computing CPU% of PID 9c9bd05 Forbid compilation on non-Linux target_os 53515f5 Update nix and other deps 7e738f0 Sort processes with 1..=4 keys instead of F1..=F4 2dacc2e Fix clippy lints, run rustfmt c903d4c Fix compilation on aarch64 target Signed-off-by: Manos Pitsidianakis --- Cargo.lock | 2 +- Cargo.toml | 14 ++++++-------- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index eaee705..207115d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -16,7 +16,7 @@ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" [[package]] name = "bb" -version = "0.4.3" +version = "0.4.4" dependencies = [ "cassowary", "crossbeam", diff --git a/Cargo.toml b/Cargo.toml index a603edc..9d87099 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,32 +1,30 @@ [package] name = "bb" -version = "0.4.3" -authors = ["Manos Pitsidianakis "] +version = "0.4.4" +authors = ["Manos Pitsidianakis "] license = "GPL-3.0-or-later" readme = "README.md" description = "clean simple fast process viewer" -homepage = "https://nessuent.xyz/bb.html" +homepage = "https://nessuent.net/bb.html" repository = "https://github.com/epilys/bb.git" categories = ["command-line-utilities", ] keywords = ["process", "processes", "top", "ps"] edition = "2018" build = "build.rs" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - [[bin]] name = "bb" path = "src/main.rs" [dependencies] +cassowary = "^0.3.0" crossbeam = "0.8.4" +libc = "0.2.62" +nix = "0.20.2" signal-hook = "0.1.12" signal-hook-registry = "1.2.0" termion = "1.5.3" -libc = "0.2.62" unicode-segmentation = "1.2.1" -nix = "0.20.2" -cassowary = "^0.3.0" [profile.release] opt-level = 'z' # Optimize for size.