forked from ajour/ajour
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
79 lines (70 loc) · 2.45 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[package]
name = "ajour"
description = "A World of Warcraft addon manager"
version = "1.3.2"
authors = ["Casper Rogild Storm"]
license = "GPL-3.0"
homepage = "https://github.com/ajour/ajour"
repository = "https://github.com/ajour/ajour"
readme = "README.md"
keywords = ["addon-manager", "wow", "world-of-warcraft", "addon"]
categories = ["graphics", "gui", "games"]
edition = "2018"
[features]
default = ["opengl"]
wgpu = ["ajour-widgets/wgpu", "iced/wgpu", "iced/default_system_font"]
opengl = ["ajour-widgets/opengl", "iced/glow", "iced/glow_default_system_font"]
no-self-update = ["ajour-core/no-self-update"]
debug = ["iced/debug"]
[dependencies]
ajour-core = { version = "1.3.2", path = "crates/core", features=['gui'] }
ajour-weak-auras = { version = "1.3.2", path = "crates/weak_auras" }
ajour-widgets = { version = "1.3.2", path = "crates/widgets" }
iced = { version = "0.3.0", default-features = false }
iced_futures = { version = "0.3.0", features = ["async-std"] }
iced_native = { version = "0.4.0" }
async-std = "1.6.2"
isahc = { version = "0.9.6", features = ["json"] }
image = "0.23.8"
opener = "0.4.1"
chrono = { version = "0.4", features = ['serde'] }
log = "0.4"
fern = "0.6"
timeago = "0.2.1"
isolang = "1.0.0"
log-panics = { version = "2.0", features=['with-backtrace'] }
structopt = "0.3"
num-format = "0.4.0"
futures = "0.3"
version-compare = "0.0.11"
open = "1"
anyhow = "1.0"
fuzzy-matcher = "0.3.7"
json-gettext = "3.2.8"
strfmt = "0.1.6"
once_cell = "1.6.0"
serde = { version = "1.0.114", features=['derive'] }
serde_json = "1.0.57"
[target.'cfg(target_os = "linux")'.dependencies]
native-dialog = "0.5.5"
[target.'cfg(not(target_os = "linux"))'.dependencies]
rfd = "0.4.0"
[target.'cfg(windows)'.dependencies]
winapi = "0.3.9"
[build-dependencies]
embed-resource = "1.3.3"
[workspace]
members = [
".",
"crates/core",
"crates/widgets",
"crates/weak_auras"
]
[patch.crates-io]
iced = { git = "https://github.com/ajour/iced", branch = "revert-wgpu-0.7" }
iced_native = { git = "https://github.com/ajour/iced", branch = "revert-wgpu-0.7" }
iced_futures = { git = "https://github.com/ajour/iced", branch = "revert-wgpu-0.7" }
iced_graphics = { git = "https://github.com/ajour/iced", branch = "revert-wgpu-0.7" }
iced_core = { git = "https://github.com/ajour/iced", branch = "revert-wgpu-0.7" }
iced_wgpu = { git = "https://github.com/ajour/iced", branch = "revert-wgpu-0.7" }
iced_glow = { git = "https://github.com/ajour/iced", branch = "revert-wgpu-0.7" }