-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
44 lines (38 loc) · 930 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
36
37
38
39
40
41
42
43
44
[workspace]
resolver = "2"
members = [
"types",
"ui_helper",
"logging",
"itemeditor",
"npceditor",
"shopeditor",
]
[workspace.dependencies]
rand = "0.8.5"
num-traits = "0.2.19"
serde = { version = "1.0.203", features = ["derive"] }
educe = "0.6.0"
chrono = { version = "0.4.38", features = ["serde"] }
strum_macros = "0.26.4"
num_enum = "0.7.2"
serde_json = "1.0.117"
serde-big-array = "0.5.1"
arr_macro = "0.2.1"
backtrace = "0.3.73"
log = "0.4.21"
itertools = "0.13.0"
bytey = "0.4.0"
speedy = "0.8.7"
[workspace.dependencies.ascending_logger]
path = "./logging"
[workspace.dependencies.ascending_ui]
path = "./ui_helper"
[workspace.dependencies.ascending_types]
path = "./types"
[workspace.dependencies.iced_aw]
#git = "https://github.com/iced-rs/iced_aw.git"
version = "0.11.0"
[workspace.dependencies.iced]
version = "0.13.1"
features = ["canvas", "tokio", "image", "debug", "wgpu", "advanced"]