-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
87 lines (80 loc) · 1.83 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[package]
name = "mehaliin"
version = "0.1.3"
edition = "2021"
authors = ["thoxy"]
license = "MIT"
description = "Internal Memory Hacking Library for Rust"
repository = "https://github.com/Thoxy67/mehaliin"
readme = "README.md"
[build]
targets = [
"x86_64-pc-windows-msvc",
"x86_64-pc-windows-gnu",
"i686-pc-windows-msvc",
"i686-pc-windows-gnu",
]
[features]
default = [
"Memory",
"Memory_Utils",
"Memory_Read",
"Memory_Write",
"Memory_Pattern_Scan",
"Injector",
"Injector_Utils",
"Injector_LoadLibraryA",
]
Memory = ["Memory_Utils", "Memory_Read", "Memory_Write", "Memory_Pattern_Scan"]
Memory_Utils = []
Memory_Read = []
Memory_Write = []
Memory_Pattern_Scan = []
Injector = ["Injector_Utils", "Injector_LoadLibraryA"]
Injector_Utils = []
Injector_LoadLibraryA = []
CPP_PATTERN_SCAN = []
[dependencies]
sysinfo = "0.30.5"
windows = { version = "0.52.0", features = [
"Win32_Foundation",
"Win32_Security",
"Win32_System_Diagnostics_ToolHelp",
"Win32_System_Threading",
"Win32_System_Memory",
"Win32_System_Diagnostics_Debug",
"Win32_System_LibraryLoader",
"Win32_System_SystemServices",
"Win32_System",
] }
[build-dependencies]
cc = "1.0.83"
[profile.test]
opt-level = 3
overflow-checks = false
lto = "thin"
[profile.release]
strip = true # Automatically strip symbols from the binary.
opt-level = "z" # Optimize for size.
lto = true
panic = "abort"
[package.metadata.docs.rs]
features = [
"Memory",
"Injector",
"Memory_Utils",
"Memory_Read",
"Memory_Write",
"Memory_Pattern_Scan",
"Injector_Utils",
"Injector_LoadLibraryA",
]
no-default-features = true
all-features = true
default-target = "x86_64-pc-windows-msvc"
targets = [
"x86_64-pc-windows-msvc",
"x86_64-pc-windows-gnu",
"i686-pc-windows-msvc",
"i686-pc-windows-gnu",
]