-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (33 loc) · 900 Bytes
/
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
[package]
name = "test-plugin"
version = "0.0.1"
edition = "2021"
description = "ASI plugin for ME3 to allow playing completely offline"
repository = "https://github.com/PocketRelay/me3-offline-plugin"
license = "MIT"
readme = "README.md"
authors = ["Jacobtread <[email protected]>"]
keywords = ["Hooking"]
[lib]
crate-type = ["cdylib"]
[dependencies]
parking_lot = "0.12.1"
serde_json = "1.0.117"
serde = { version = "1.0.203", features = ["derive"] }
[dependencies.windows-sys]
version = "0.52"
features = [
# Foundational types
"Win32_Foundation",
# For DLL_PROCESS_ATTACH and DLL_PROCESS_DETACH constants
"Win32_System_SystemServices",
# Required for allocating consoles
"Win32_System_Console",
# Required to do "always online" behavior
"Win32_Networking_WinInet",
"Win32_System_Memory",
]
[profile.release]
strip = true
lto = true
codegen-units = 1