-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
47 lines (42 loc) · 1.33 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
[package]
name = "gaia-maker"
version = "0.1.0"
edition = "2021"
authors = ["T. Okubo <t.okubo.rx78+devel@gmail.com>"]
license = "GPL-3.0"
[features]
default = []
asset_tar = ["dep:bevy_asset_tar"]
[dependencies]
anyhow = "1"
arrayvec = "0.7"
base64 = "0.22"
bevy = { version = "0.15", default-features = false, features = ["bevy_asset", "bevy_core_pipeline", "bevy_render", "bevy_sprite", "bevy_window", "bevy_winit", "png", "x11", "webgl2"] }
bevy_asset_loader = "0.22"
bevy_common_assets = { version = "0.12", features = ["ron"] }
bevy_egui = "0.31"
bevy_kira_audio = "0.21"
bincode = "1"
clap = { version = "4", features = ["derive"] }
compact_str = { version = "0.8.0", features = ["serde"] }
crossbeam = "0.8"
dirs = "5"
egui_extras = "0.29"
egui_plot = "0.29"
flate2 = "1"
fnv = "1"
log = "0.4"
noise = "0.9"
rand = { version = "0.8", features = ["small_rng"] }
regex = "1"
ron = "0.8"
serde = { version = "1", features = ["derive"] }
serde_with = "3"
strum = { version = "0.26", features = ["derive"] }
bevy_asset_tar = { git = "https://github.com/garkimasera/bevy_asset_tar.git", optional = true }
tile-geom = { git = "https://github.com/garkimasera/tile-geom.git" }
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = "0.2"
web-sys = { version = "0.3", features = ["Window", "Storage", "Location"] }
[profile.dev]
opt-level = 1