-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
72 lines (57 loc) · 1.4 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
[package]
name = "lyche"
version = "1.0.0"
authors = ["segfault <segfault#1337>"]
edition = "2021"
resolver = "2"
# to future me: When features are stable, Clean Up This File Please............
[dependencies]
# memflow stuff
memflow = "=0.2.0-beta10"
memflow-win32 = "=0.2.0-beta10"
memflow-pcileech = { git = "https://github.com/memflow/memflow-pcileech", branch = "main" }
# for pattern scanning
regex = "^1.5"
# util macros and such
lazy_static = "^1.4"
log = "0.4"
env_logger = "0.9"
clap = { version = "4.4", features = ["cargo"]}
clap-num = "1.0"
simplelog = "^0.12"
futures = {version = "0.3", features = ["executor"]}
anyhow = "1.0"
failure = "0.1.6"
# arduino com
serialport = "^4.2"
format-bytes = "0.3"
# config save / load
config = { version = "^0.13", features = ["toml"]}
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
toml = "0.8"
chrono = { version = "0.4", features = ["serde"] }
nom = "4.2.3"
notify = "6.1"
# read valve vdf key value format for map info
keyvalues-parser = "0.1.0"
# rendering
winit = "0.28.6"
#crow = "0.7"
wgpu = "0.17.0"
wgpu_glyph = "0.21.0"
image = "0.24"
cgmath = "0.18"
#vischeck
#vbsp = {version="*", path="../vbsp"}
# uncomment if you wanna run performance traces on the code
# [profile.release]
# debug = true
[target.'cfg(windows)'.build-dependencies]
winres = "0.1.11"
[features]
bhop_sus = []
aimbot = []
esp = []
bones = []