-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (32 loc) · 1016 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
[package]
name = "arc_util"
version = "0.11.4"
edition = "2021"
authors = ["Zerthox"]
repository = "https://github.com/zerthox/arcdps-utils"
[dependencies]
arcdps = { git = "https://github.com/zerthox/arcdps-rs" }
chrono = { version = "0.4.23", optional = true }
minreq = { version = "2.8.1", features = ["https-native", "json-using-serde"], optional = true }
open = { version = "5.0.0", optional = true }
semver = { version = "1.0.17", optional = true }
serde = { version = "1.0.152", features = ["derive"], optional = true }
serde_json = { version = "1.0.93", optional = true }
strum = "0.26.1"
[dependencies.windows]
version = "0.56.0"
features = [
"System",
"Win32_Foundation",
"Win32_Media",
"Win32_UI_Input_KeyboardAndMouse",
"Win32_Graphics_Dxgi_Common",
"Win32_Graphics_Direct3D",
"Win32_Graphics_Direct3D11",
]
[features]
default = []
serde = ["dep:serde", "arcdps/serde"]
settings = ["serde", "serde_json"]
update = ["minreq", "open", "semver", "dep:serde"]
log = ["chrono"]