-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (38 loc) · 1.03 KB
/
Copy pathCargo.toml
File metadata and controls
41 lines (38 loc) · 1.03 KB
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
[package]
name = "erfps2"
version = "0.3.3"
edition = "2024"
authors = ["Dasaav"]
license = "MIT OR Apache-2.0"
[lib]
crate-type = ["cdylib"]
[dependencies]
eldenring.path = "fromsoftware-rs/crates/eldenring"
eyre = "0.6.12"
fromsoftware-shared.path = "fromsoftware-rs/crates/shared"
glam = "0.33.4"
simplelog = { version = "0.12.2", default-features = false }
libhotpatch = { version = "1.2.0", default-features = false }
log = "0.4.28"
windows = { version = "0.62.2", features = [
"Win32_System_SystemServices",
"Win32_System_LibraryLoader",
"Win32_System_Memory",
"Win32_UI_WindowsAndMessaging",
] }
diversion = { version = "0.2.2", features = ["custom"] }
toml = "1.1.4"
serde = { version = "1.0.228", features = ["serde_derive"] }
closure-ffi = "5.0.1"
pelite = "0.10.0"
strum = { version = "0.27.2", features = ["derive"] }
bitvec = "1.0.1"
portable-atomic = { version = "1.13.0", default-features = false, features = [
"std",
"float",
] }
[profile.release]
panic = "abort"
opt-level = "z"
codegen-units = 1
lto = true