[package]
edition = "2024"
name = "procinsh"
version = "0.1.2"
build = "build.rs"
include = [
"/Cargo.toml",
"/Cargo.lock",
"/LICENSE",
"/README.md",
"/build.rs",
"/rust-toolchain.toml",
"/src/**",
"/dist/web/*.js",
"/tests/**",
"!/tests/targets/bin/**",
"/docs/**",
"/package.json",
"/package-lock.json",
"/tsconfig.json",
"/space_screenshot.png",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A local, read-only Linux x86-64 process inspector"
readme = "README.md"
license = "MIT"
repository = "https://github.com/akawashiro/procinsh"
[lib]
name = "procinsh"
path = "src/lib.rs"
[[bin]]
name = "procinsh"
path = "src/main.rs"
[[test]]
name = "inspector"
path = "tests/inspector.rs"
[[test]]
name = "space"
path = "tests/space.rs"
[[test]]
name = "web"
path = "tests/web.rs"
[dependencies.addr2line]
version = "0.24"
[dependencies.anyhow]
version = "1"
[dependencies.async-stream]
version = "0.3"
[dependencies.axum]
version = "0.8"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.env_logger]
version = "0.11"
[dependencies.humantime]
version = "2"
[dependencies.iced-x86]
version = "1.21"
features = [
"std",
"decoder",
"intel",
]
default-features = false
[dependencies.libbpf-rs]
version = "0.26.2"
[dependencies.libc]
version = "0.2"
[dependencies.log]
version = "0.4"
[dependencies.object]
version = "0.36"
features = ["read"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"net",
"signal",
"sync",
"time",
]
[dev-dependencies.tower]
version = "0.5"
features = ["util"]
[build-dependencies.libbpf-cargo]
version = "0.26.2"
[profile.release]
lto = "thin"
strip = "debuginfo"