-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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 <[email protected]>
- Loading branch information
Showing
2 changed files
with
7 additions
and
9 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,30 @@ | ||
[package] | ||
name = "bb" | ||
version = "0.4.3" | ||
authors = ["Manos Pitsidianakis <[email protected]>"] | ||
version = "0.4.4" | ||
authors = ["Manos Pitsidianakis <[email protected]>"] | ||
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. | ||
|