-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (40 loc) · 901 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
45
46
47
48
49
50
[package]
name = "okizeme"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/spooky-th-ghost/okizeme"
description = "a micro engine for creationg fighting games in bevy"
[dependencies]
bevy = "0.10.1"
regex = "1.4.6"
lazy_static = "1.4.0"
serde_json = "1.0"
serde = "1.0.136"
bevy-inspector-egui = "0.16"
leafwing-input-manager = "0.9.2"
okizeme_macros = {path = "okizeme_macros"}
dyn-clone = "1.0.11"
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "input_to_action"
harness = false
[features]
default = []
debug = []
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[profile.release]
lto = "thin"
[[example]]
name = "character_animation"
path = "examples/character_animation.rs"
[[example]]
name = "collisions"
path = "examples/collisions.rs"
[[example]]
name = "basic_movement"
path = "examples/basic_movement.rs"