-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
44 lines (36 loc) · 1.09 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "memflow-coredump"
version = "0.2.1"
authors = ["ko1N <[email protected]>", "Aurimas Blažulionis <[email protected]>"]
edition = "2021"
description = "win32 coredump connector for the memflow physical memory introspection framework"
documentation = "https://docs.rs/memflow-coredump"
readme = "README.md"
homepage = "https://memflow.github.io"
repository = "https://github.com/memflow/memflow-coredump"
license = "MIT"
keywords = [ "memflow", "introspection", "memory" ]
categories = [ "api-bindings", "memory-management", "os" ]
[lib]
crate-type = ["lib", "cdylib"]
[dependencies]
memflow = { version = "0.2", features = ["plugins", "filemap"] }
log = { version = "0.4", default-features = false }
[dev-dependencies]
env_logger = "0.11"
memflow-win32 = { version = "0.2" }
[profile.release]
lto = true
[features]
default = ["filemap", "plugins"]
plugins = ["memflow/plugins"]
filemap = ["memflow/filemap"]
[[example]]
name = "read_phys"
path = "examples/read_phys.rs"
[[example]]
name = "ps_win32"
path = "examples/ps_win32.rs"
[[example]]
name = "ps_inventory"
path = "examples/ps_inventory.rs"