-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
47 lines (42 loc) · 1.04 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
[package]
name = "memflex"
version = "0.8.3"
edition = "2021"
description = "Memory hacking library"
authors = ["ItsEthra"]
keywords = ["os", "memory", "hacking", "process"]
categories = ["os"]
license = "MIT"
repository = "https://github.com/ItsEthra/memflex"
readme = "README.md"
[package.metadata.docs.rs]
all-features = true
targets = ["x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"]
[features]
default = ["std", "internal"]
std = ["alloc", "windows", "libc"]
alloc = []
internal = ["std"]
external = ["std"]
[dependencies]
bitflags = "2.4.0"
obfstr = "0.4.3"
paste = "1.0.13"
[target.'cfg(unix)'.dependencies.libc]
version = "0.2"
optional = true
[target.'cfg(windows)'.dependencies.windows]
version = "0.43"
optional = true
features = [
"Win32_System_Diagnostics_ToolHelp",
"Win32_System_Diagnostics_Debug",
"Win32_UI_WindowsAndMessaging",
"Win32_System_ProcessStatus",
"Win32_System_LibraryLoader",
"Win32_System_Threading",
"Win32_System_Console",
"Win32_System_Memory",
"Win32_Foundation",
"Win32_Security",
]