[package]
edition = "2021"
rust-version = "1.68.0"
name = "ps-mem"
version = "0.3.1"
authors = ["aki <aki.akaguma@hotmail.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
The process memory size listing
"""
readme = "README.md"
keywords = [
"memory",
"command",
"linux",
]
categories = ["command-line-interface"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/aki-akaguma/ps-mem"
[package.metadata.deb]
features = ["debian_build"]
section = "AAA-admin"
priority = "optional"
maintainer = "aki <aki.akaguma@hotmail.com>"
extended-description = """
The process memory size listing
"""
depends = "$auto"
separate-debug-symbols = true
assets = [
[
"target/release/ps-mem",
"usr/sbin/",
"755",
],
[
"target/rust-version-info.txt",
"usr/share/doc/ps-mem/",
"644",
],
[
"README.md",
"usr/share/doc/ps-mem/",
"644",
],
]
[features]
debian_build = []
default = []
[lib]
name = "libps_mem"
crate-type = ["lib"]
path = "src/lib.rs"
[[bin]]
name = "ps-mem"
path = "src/main.rs"
bench = false
[[test]]
name = "helper"
path = "tests/helper.rs"
[[test]]
name = "helper_e"
path = "tests/helper_e.rs"
[[test]]
name = "helper_l"
path = "tests/helper_l.rs"
[[test]]
name = "integration"
path = "tests/test_e.rs"
[[test]]
name = "test_l"
path = "tests/test_l.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.flood-tide]
version = "0.2"
features = ["stop_at_mm"]
default-features = true
[dependencies.linux-procfs]
version = "0.3"
features = [
"has_pidentry_status_state",
"has_pidentry_status_vm_hwm",
]
default-features = false
[dependencies.num-format]
version = "0.4"
[dependencies.runnel]
version = "0.4"
[dependencies.signal-hook]
version = "0.3"
[dev-dependencies.assert-text]
version = "0.2"
[dev-dependencies.exec-target]
version = "0.2"
[dev-dependencies.indoc]
version = "2.0"
[dev-dependencies.regex]
version = "1.12"
[build-dependencies.rust-version-info-file]
version = "0.2"