-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
34 lines (30 loc) · 929 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "rsps"
version = "0.4.0"
authors = ["Matt Stavola <[email protected]>"]
edition = "2018"
description = "A command line tool to list and debug running Rust processes"
license = "MIT OR Apache-2.0"
repository = "https://github.com/mbStavola/rsps/"
categories = ["command-line-utilities", "development-tools"]
build = "build.rs"
[[bin]]
name = "rsps"
path = "src/main.rs"
[build-dependencies]
vergen = { version = "5", default-features = false, features = ["build", "cargo", "rustc"] }
[dependencies]
clap = "3.0.0-beta.2"
object = "0.23.0"
sysinfo = "0.17.1"
lazy_static = "1.4.0"
rayon = "1.5.0"
console = "0.14.1"
ansi_term = "0.12.1"
anyhow = "1.0.40"
rustc-demangle = "0.1.18"
byte-unit = { version = "4.0.10", default-features = false, features = ["std"] }
tabwriter = { version = "1.2.1", features = ["ansi_formatting"] }
emboss = "0.3.0"
[target.'cfg(target_os = "linux")'.dependencies]
rstack = "0.3.2"