G-Earth/G-Mem/Cargo.toml

33 lines
689 B
TOML
Raw Normal View History

2019-10-25 22:47:59 +02:00
[package]
name = "G-Mem"
version = "0.2.0"
2019-10-25 22:47:59 +02:00
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"
2019-10-25 22:47:59 +02:00
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"]}
2019-10-25 22:47:59 +02:00
[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