-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
41 lines (35 loc) · 1.08 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
[package]
name = "memflow-microvmi"
version = "0.1.0"
authors = ["ko1N <[email protected]>"]
edition = "2018"
license = "GPL-3.0-only"
description = "libmicrovmi connector for the memflow physical memory introspection framework"
homepage = "https://memflow.github.io"
repository = "https://github.com/memflow/memflow-microvmi"
documentation = "https://docs.rs/memflow-microvmi"
readme = "README.md"
keywords = [ "memflow", "libmicrovmi", "introspection", "memory" ]
categories = [ "api-bindings", "memory-management", "os" ]
[lib]
crate-type = ["lib", "cdylib"]
[dependencies]
memflow = { version = "0.1", features = ["inventory"] }
memflow-derive = { version = "0.1" }
log = { version = "0.4", default-features = false }
microvmi = { version = "0.1", git = "https://github.com/Wenzel/libmicrovmi" }
[dev-dependencies]
clap = "2.33"
simple_logger = "1.0"
[profile.release]
lto = true
[features]
default = []
inventory = []
hyper-v = ["microvmi/hyper-v"]
kvm = ["microvmi/kvm"]
virtualbox = ["microvmi/virtualbox"]
xen = ["microvmi/xen"]
[[example]]
name = "read_phys"
path = "examples/read_phys.rs"