-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
33 lines (30 loc) · 956 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
[package]
name = "arcdps"
version = "0.9.1"
authors = ["Zerthox", "Greaka"]
edition = "2021"
description = "Rust bindings for the Guild Wars 2 DPS-meter."
repository = "https://github.com/zerthox/arcdps-bindings"
categories = ["api-bindings"]
keywords = ["arcdps", "guild-wars-2", "ffi", "addon", "framework"]
license = "MIT/Apache-2.0"
[dependencies]
arcdps_codegen = { path = "../arcdps_codegen" }
arcdps-imgui = { version = "0.8", features = ["tables-api"] }
chrono = "0.4"
log = { version = "0.4", features = ["std"], optional = true }
num_enum = "0.5"
serde = { version = "1.0", features = ["derive"], optional = true }
strum = { version = "0.24", features = ["derive"], optional = true }
[dependencies.windows]
version = "0.43"
features = [
"System",
"Win32_Foundation",
"Win32_UI_WindowsAndMessaging",
"Win32_System_LibraryLoader"
]
[features]
default = []
extras = ["arcdps_codegen/extras"]
serde = ["dep:serde", "chrono/serde"]