-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
43 lines (40 loc) · 858 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
[workspace]
members = [
"kson-effect-param-macro",
"kson",
"kson-music-playback",
"editor",
"game",
"game/rusc_database",
"kson-rodio-sources",
]
resolver = "2"
[profile.dev.package."*"]
opt-level = 3
[profile.release]
strip = true
[workspace.dependencies]
serde = { version = "1", features = ["derive"] }
puffin = "0.19"
puffin_http = "0.16.0"
egui = "0.27"
emath = "0.27"
egui_glow = "0.27"
eframe = { version = "0.27", features = ["persistence"] }
simple_logger = "4.0.0"
image = { version = "0.25", default_features = false, features = [
"png",
"jpeg",
] }
serde_json = "1"
rodio = { version = "0", default-features = false, features = [
'symphonia-wav',
"flac",
"vorbis",
"mp3",
] }
anyhow = "1"
rand = "0.8.5"
log = "*"
kson_rodio_sources = { path = "../kson-rodio-sources" }
itertools = "0.12.1"