-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
52 lines (42 loc) · 1.81 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
[package]
name = "clansofmesa"
version = "0.1.0"
edition = "2021"
authors = ["nithinmuthukumar", "MrPicklePinosaur"]
description = ""
repository = "https://github.com/HalfPixelStudios/clansofmesa"
[features]
default = ["bevy_sprite", "bevy_ui"]
bevy_sprite = ["bevy/bevy_sprite", "bevy/bevy_render"]
bevy_ui = ["bevy/bevy_ui", "bevy/bevy_text", "bevy/bevy_render"]
[dependencies]
bevy = { version = "0.7.0", default-features = false, features = [ "render", "animation", "bevy_winit", "bevy_gilrs", "png", "hdr", "filesystem_watcher", "x11", "trace" ] }
bevy_ecs_ldtk = { version = "0.3.0", features = [ "atlas" ] }
# bevy_kira_audio = { version = "0.10.0", default-features = false, features = [ "wav" ] }
# bevy_rapier2d = { version = "0.14.1", features = ["debug-render"] }
# bevy-inspector-egui = { version = "0.11" }
# bevy_hanabi = { version = "0.2.0" }
### kayak_ui = { git="https://github.com/StarArawn/kayak_ui", features = ["bevy_renderer"] }
bevy_bobs = { path = "crates/bevy_bobs", features = ["physics_2d", "prefab", "attack_pattern", "serde", "health_bar"] }
ggrs = { version = "0.9.0" }
bevy_ggrs = { version = "0.9.0", features = ["wasm-bindgen"] }
matchbox_socket = { version = "0.3", features = ["ggrs-socket"] }
rand = { version = "0.8.5" }
argparse = { git = "https://github.com/MrPicklePinosaur/pino.rs" }
autodefault = { version = "2.0.0" }
bytemuck = { version = "1.10.0" }
# ron = "0.7.1"
serde = { version = "1", features = ["derive"] }
[patch.crates-io]
ggrs = { git = "https://github.com/gschup/ggrs" }
bevy_ggrs = { git = "https://github.com/gschup/bevy_ggrs" }
matchbox_socket = { git = "https://github.com/johanhelsing/matchbox", branch = "main" }
[workspace]
resolver = "2"
members = ["crates/*"]
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[build]
target = "wasm32-unknown-unknown"