-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
36 lines (34 loc) · 1.17 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
[package]
name = "arcdps"
version = "0.16.0"
authors = ["Zerthox", "Greaka"]
edition = "2021"
description = "Rust bindings for ArcDPS plugins"
repository = "https://github.com/zerthox/arcdps-rs"
categories = ["api-bindings"]
keywords = ["arcdps", "guild-wars-2", "ffi", "addon", "framework"]
license = "MIT"
[dependencies]
arcdps_codegen = { path = "../arcdps_codegen" }
arcdps-imgui = { version = "0.8.0", features = ["tables-api"] }
bitflags = "2.8.0"
chrono = { version = "0.4.24", optional = true }
evtc = { path = "../evtc", features = ["realtime"]}
log = { version = "0.4.17", features = ["std"], optional = true }
num_enum = "0.7.0"
serde = { version = "1.0.160", features = ["derive"], optional = true }
strum = { version = "0.26.1", features = ["derive"], optional = true }
windows = { workspace = true, features = [
"System",
"Win32_Foundation",
"Win32_UI_WindowsAndMessaging",
"Win32_System_LibraryLoader",
"Win32_Graphics_Dxgi",
"Win32_Graphics_Direct3D11",
] }
[features]
default = ["unwind"]
unwind = ["arcdps_codegen/unwind"]
extras = ["arcdps_codegen/extras", "chrono"]
serde = ["dep:serde", "evtc/serde", "chrono/serde"]
strum = ["dep:strum", "evtc/strum"]