2022-01-01 05:30:52 +03:00
|
|
|
[package]
|
|
|
|
name = "procinfo"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
libc = "0.2"
|
2022-04-20 19:43:56 +03:00
|
|
|
log = "0.4"
|
2022-01-01 05:30:52 +03:00
|
|
|
luahelper = { path = "../luahelper" }
|
2022-04-20 19:43:56 +03:00
|
|
|
serde = {version="1.0", features = ["rc", "derive"]}
|
2022-01-01 05:30:52 +03:00
|
|
|
|
|
|
|
[target."cfg(windows)".dependencies]
|
|
|
|
ntapi = "0.3"
|
|
|
|
winapi = { version = "0.3", features = [
|
|
|
|
"handleapi",
|
|
|
|
"memoryapi",
|
|
|
|
"psapi",
|
|
|
|
"processthreadsapi",
|
|
|
|
"tlhelp32",
|
|
|
|
]}
|
|
|
|
|