forked from Zerthox/arcdps-food-reminder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (36 loc) · 1.25 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
37
38
39
40
41
42
[package]
name = "arcdps_food_reminder"
version = "0.6.4"
edition = "2021"
authors = ["Zerthox"]
repository = "https://github.com/zerthox/arcdps-food-reminder"
[dependencies]
arc_util = { git = "https://github.com/zerthox/arcdps-utils", features = ["serde", "settings"] }
arcdps = { git = "https://github.com/zerthox/arcdps-rs", features = ["extras", "log", "serde", "strum"] }
gw2_mumble = { git = "https://github.com/zerthox/gw2-mumble-rs" }
include_img = { git = "https://github.com/zerthox/include-img" }
jsonc-parser = { version = "0.23.0", features = ["serde"] }
log = { version = "0.4.17", features = ["release_max_level_info"] }
once_cell = "1.17.0"
open = "5.0.1"
semver = { version = "1.0.16", features = ["serde"] }
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.92"
strum = { version = "0.25.0", features = ["derive"] }
windows = { version = "0.52.0", features = ["System"] }
[build-dependencies]
jsonc-parser = { version = "0.23.0", features = ["serde"] }
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.92"
uneval = "0.2.4"
[lib]
crate-type = ["cdylib"]
[features]
default = []
demo = []
[profile.release]
lto = "thin"
[profile.release-log]
debug-assertions = true
incremental = true
inherits = "release"