-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (33 loc) · 1.18 KB
/
Cargo.toml
File metadata and controls
37 lines (33 loc) · 1.18 KB
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
[package]
name = "memflow-reclass-plugin"
version = "0.2.1"
authors = ["ko1N <ko1N1337@gmail.com>"]
edition = "2018"
description = "ReClass.NET plugin for the memflow physical memory introspection framework"
documentation = "https://docs.rs/memflow-reclass-plugin"
readme = "README.md"
homepage = "https://memflow.github.io"
repository = "https://github.com/memflow/memflow-reclass-plugin"
license = "MIT"
keywords = [ "memflow", "introspection", "memory", "dma", "reclass" ]
categories = [ "memory-management", "os" ]
build = "build.rs"
[lib]
name = "memflow_reclass"
crate-type = ["cdylib"]
[package.metadata.winres]
FileDescription = "memflow"
ProductName = "ReClass.NET Native Plugin"
ProductVersion = "0.2.1"
OriginalFilename = "memflow_reclass.dll"
LegalCopyright = "Copyright © 2020-2021"
Comments = "The memflow ReClass.NET connects to a Process running on a memflow target. See https://github.com/memflow/memflow for more about memflow."
CompanyName = "ko1N, h33p"
[dependencies]
log = "0.4.8"
simple-logging = "2.0.2"
memflow = { version = "0.2", features = ["plugins"] }
serde = { version = "1.0", features = ["derive"] }
toml = "0.8"
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"