[package] name = "heim-process" version = "0.1.1-rc.1" authors = ["svartalf "] edition = "2018" description = "Cross-platform processes information" keywords = ["heim", "system", "process", "pid"] categories = ["asynchronous", "os", "api-bindings"] repository = "https://github.com/heim-rs/heim" readme = "README.md" license = "Apache-2.0 OR MIT" [badges] maintenance = { status = "actively-developed" } github-actions = { repository = "heim-rs/heim", workflow = "Tier 1 CI" } [dependencies] heim-common = { version = "0.1.0-rc.1", path = "../heim-common" } heim-runtime = { version = "0.1.0-rc.1", path = "../heim-runtime" } heim-cpu = { version = "0.1.0-rc.1", path = "../heim-cpu" } cfg-if = "~1.0" libc = "~0.2" lazy_static = "1.3.0" ordered-float = { version = "~2.0", default-features = false } memchr = "^2.2" async-trait = "~0.1" [target.'cfg(unix)'.dependencies] futures = { version = "~0.3", default-features = false } [target.'cfg(target_os = "linux")'.dependencies] heim-net = { version = "0.1.0-rc.1", path = "../heim-net" } heim-host = { version = "0.1.0-rc.1", path = "../heim-host" } smol = "~1.2" [target.'cfg(target_os = "windows")'.dependencies] heim-host = { version = "0.1.0-rc.1", path = "../heim-host" } ntapi = "0.3.3" [target.'cfg(target_os = "windows")'.dependencies.winapi] version = ">=0.3.8" default-features = false features = [ "impl-default", "minwindef", "winnt", "winbase", "handleapi", "psapi", "processthreadsapi", "winerror", "tlhelp32" ] [target.'cfg(target_os = "macos")'.dependencies] mach = "0.3.2" darwin-libproc = "0.2.0" [dev-dependencies] heim-derive = { version = "0.1.0-rc.1", path = "../heim-derive" } smol = "~1.2" futures = { version = "~0.3", default-features = false } futures-timer = "^3.0" which = { version = "~4.0", default-features = false } version-sync = "0.9" static_assertions = "1.1" [package.metadata.docs.rs] rustdoc-args = ["--cfg", "docsrs"]