mirror of
https://github.com/sirjonasxx/G-Earth.git
synced 2024-11-23 08:50:52 +01:00
86e4096f79
Signed-off-by: Eduardo Alonso <edu@error404software.com>
33 lines
689 B
TOML
33 lines
689 B
TOML
[package]
|
|
name = "G-Mem"
|
|
version = "0.2.0"
|
|
authors = ["G-Earth contributors"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
kernel32-sys = "0.2.2"
|
|
netstat = "0.7.0"
|
|
read-process-memory = "0.1.2"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
procfs = "0.7.7"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winapi = {version = "0.3.8", features = ["winnt", "minwindef", "memoryapi", "sysinfoapi", "processthreadsapi"]}
|
|
|
|
[profile.dev]
|
|
opt-level = 3
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
debug = false
|
|
rpath = false
|
|
lto = false
|
|
debug-assertions = false
|
|
codegen-units = 16
|
|
panic = 'unwind'
|
|
incremental = false
|
|
overflow-checks = false
|