forked from awsassets/radon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
61 lines (54 loc) · 1.26 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
[package]
name = "faithe"
version = "0.8.0"
edition = "2021"
authors = ["sy1ntexx"]
license = "MIT"
description = "Windows memory hacking library."
readme = "README.md"
repository = "https://github.com/sy1ntexx/faithe"
exclude = [
"examples/",
"CHANGELOG.md",
]
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
targets = ["i686-pc-windows-msvc", "x86_64-pc-windows-msvc"]
[features]
default = ["nightly", "thiserror", "windows", "external", "iced-x86", "alloc"]
no-msgs = []
no-std = []
alloc = []
nightly = []
external = [
'windows/Win32_System_Diagnostics_ToolHelp',
'windows/Win32_System_Diagnostics_Debug',
'windows/Win32_System_Kernel',
]
[dependencies]
memoffset = "0.6.5"
bitflags = "1.3.2"
cfg-if = "1.0.0"
obfstr = "0.3.0"
[dependencies.libc]
version = "0.2"
default-features = false
[dependencies.thiserror]
version = "1.0.0"
optional = true
[dependencies.iced-x86]
version = "1.17.0"
optional = true
[target.'cfg(windows)'.dependencies.windows]
version = "0.36"
features = [
'Win32_UI_WindowsAndMessaging',
'Win32_System_ProcessStatus',
'Win32_System_LibraryLoader',
'Win32_System_Threading',
'Win32_System_Console',
'Win32_System_Memory',
'Win32_Foundation',
'Win32_Security',
]
optional = true