-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
70 lines (60 loc) · 1.57 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[workspace]
members = ["macros"]
[package]
name = "bevy-yoleck"
description = "Your Own Level Editor Creation Kit"
version = "0.22.0"
edition = "2021"
authors = ["IdanArye <[email protected]>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/idanarye/bevy-yoleck"
documentation = "https://docs.rs/bevy-yoleck"
readme = "README.md"
categories = ["game-development"]
keywords = ["bevy", "gamedev", "level-editor"]
exclude = [
"assets",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy-yoleck-macros = { version = "0.9.1", path = "macros" }
anyhow = "^1"
bevy = { version = "^0.14", default-features = false, features = ["bevy_state"] }
bevy_egui = { version = "^0.28", default-features = false, features = ["default_fonts", "render"] }
serde = "^1"
serde_json = "^1"
thiserror = "^1"
uuid = "1.9.1"
[features]
bevy_reflect = []
vpeol = []
vpeol_2d = [
"vpeol",
"bevy/bevy_text",
"bevy/bevy_sprite",
]
vpeol_3d = [
"vpeol",
"bevy/bevy_pbr",
]
[dev-dependencies]
bevy = { version = "^0.14", default-features = false, features = ["bevy_sprite", "x11"] }
[[example]]
name = "example2d"
required-features = ["vpeol_2d", "bevy/png", "bevy/bevy_gizmos"]
[[example]]
name = "example3d"
required-features = [
"vpeol_3d",
"bevy/bevy_scene",
"bevy/bevy_gltf",
"bevy/ktx2",
"bevy/zstd",
"bevy/tonemapping_luts",
"bevy/bevy_gizmos",
]
[[example]]
name = "doors_to_other_levels"
required-features = ["vpeol_2d", "bevy/png"]
[package.metadata.docs.rs]
all-features = true