-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
48 lines (39 loc) · 1.22 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
45
46
47
48
[package]
name = "memflow-qemu"
version = "0.2.1"
authors = ["ko1N <[email protected]>", "Aurimas Blažulionis <[email protected]>"]
edition = "2021"
description = "qemu connector for the memflow physical memory introspection framework"
documentation = "https://docs.rs/memflow-qemu"
readme = "README.md"
homepage = "https://memflow.github.io"
repository = "https://github.com/memflow/memflow-qemu"
license = "MIT"
keywords = [ "memflow", "introspection", "memory" ]
categories = [ "api-bindings", "memory-management", "os" ]
[lib]
crate-type = ["lib", "cdylib"]
[dependencies]
memflow = { version = "0.2", features = ["plugins"] }
memflow-native = { version = "=0.2.1" } # TODO: update thi once m4b/goblin got released
log = "0.4"
[target.'cfg(target_os = "linux")'.dependencies]
qapi = { version = "^0.14", features = ["qmp"], optional = true }
scan_fmt = { version = "^0.2.6", optional = true }
[dev-dependencies]
env_logger = "0.11"
memflow-win32 = { version = "0.2" }
[profile.release]
lto = true
[features]
default = ["qmp"]
qmp = ["qapi", "scan_fmt"]
[[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"