forked from cohaereo/alkahest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
executable file
·104 lines (91 loc) · 2.58 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[package]
name = "alkahest"
version = "0.2.2"
edition = "2021"
authors = ["cohaereo <cohaereo@protonmail.com>"]
[dependencies]
destiny-havok = { path = "./crates/destiny-havok" }
destiny-pkg = { version = "0.7.1", git = "https://github.com/v4nguard/destiny-pkg" }
anyhow = { version = "1.0.71" }
winit = { version = "0.28" }
binrw = "0.12"
itertools = "0.11.0"
ddsfile = "0.5.1"
hex = "0.4.3"
bytemuck = { version = "1.13.1", features = ["derive"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
windows = { version = "0.43.0", features = [
"Win32_Graphics_Direct3D11",
"Win32_Graphics_Direct3D",
"Win32_Graphics_Dxgi",
"Win32_Graphics_Dxgi_Common",
"Win32_Foundation",
"Win32_System_Console",
"Win32_Graphics_Direct3D_Fxc",
] }
raw-window-handle = "0.5.2"
u16cstr = "0.4.0"
glam = { version = "0.25", features = ["bytemuck", "mint"] }
nohash-hasher = "0.2.0"
fastrand = "2.0.0"
bitfield-struct = "0.5.3"
bitflags = "2.3.3"
clap = { version = "4.4.4", features = ["derive"] }
color-eyre = "0.6.2"
const_format = "0.2.31"
crossbeam = "0.8.2"
egui = { version = "0.22", features = ["persistence"] }
egui-directx11 = { path = "./crates/egui-directx11" }
egui-winit = "0.22.0"
frustum_query = "0.1.2"
genmesh = "0.6.2"
lazy_static = "1.4.0"
num-derive = "0.4.0"
num-traits = "0.2.16"
obj = "0.10.2"
parking_lot = "0.12.1"
png = "0.17.10"
poll-promise = { version = "0.3.0", features = ["tokio"] }
rayon = "1.7.0"
regex = "1.9.5"
ringbuffer = "0.14.2"
ron = "0.8.1"
serde = { version = "1.0.188", features = ["derive"] }
serde_yaml = "0.9.25"
strum = { version = "0.25.0", features = ["derive"] }
thiserror = "1.0.49"
tokio = { version = "1.32.0", features = ["rt", "macros"] }
tracing-tracy = "0.10.2"
tracy-client = "0.15.2"
# bevy_ecs = "0.11.3"
hecs = "0.10.3"
tinyvec = "1.6.0"
native-dialog = "0.7.0"
paste = "1.0.14"
discord-rpc-client = { version = "0.4.0", optional = true }
fs-err = "2.11.0"
num = "0.4.1"
[features]
default = ["discord_rpc"]
tracy = []
# Ensures all TFX opcodes are interpreted
# TODO(cohae): This should be a runtime configuration setting?
discord_rpc = ["dep:discord-rpc-client"]
debug_lock = []
# Disable sorting the map list
keep_map_order = []
tfx_strict_interpreter = []
[package.metadata.imgui-dx11-renderer]
targets = ["x86_64-pc-windows-gnu"]
[package.metadata.alkahest]
targets = ["x86_64-pc-windows-gnu"]
[profile.dev.package.destiny-pkg]
opt-level = 3
[build-dependencies]
chrono = "0.4.31"
winres = "0.1.12"
[profile.dev]
# opt-level = 3
# cohae: Overflow checks are nice for some, but not for us
overflow-checks = false