-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (55 loc) · 1.54 KB
/
Cargo.toml
File metadata and controls
65 lines (55 loc) · 1.54 KB
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
[package]
name = "iyes2d_editor"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
iyes_scene_tools = { git = "https://github.com/IyesGames/iyes_scene_tools" }
iyes_bevy_extras = { git = "https://github.com/IyesGames/iyes_bevy_extras" }
iyes2d_autotilemap = { git = "https://github.com/IyesGames/iyes2d_autotilemap" }
iyes_blueprints = { git = "https://github.com/IyesGames/iyes_blueprints" }
rand = "0.8.5"
enum-iterator = "1.2.0"
parking_lot = "0.12.1"
[dependencies.bevy]
version = "0.10"
default-features = false
features = [
"bevy_asset",
"bevy_scene",
"bevy_core_pipeline",
"bevy_render",
"bevy_sprite",
"bevy_text",
"bevy_ui",
]
[dependencies.bevy_ecs_tilemap]
version = "0.10"
optional = true
[dependencies.bevy_asset_loader]
version = "0.15"
features = ["standard_dynamic_assets"]
[dev-dependencies.bevy]
version = "0.10"
default-features = false
features = [
"bevy_asset",
"bevy_scene",
"bevy_core_pipeline",
"bevy_render",
"bevy_sprite",
"bevy_text",
"bevy_ui",
"bevy_winit",
"x11",
"wayland",
"png",
]
[dev-dependencies.bevy_ecs_tilemap]
version = "0.10"
[patch."https://github.com/IyesGames/iyes_bevy_extras"]
iyes_bevy_extras = { path = "../iyes_bevy_extras/" }
[patch."https://github.com/IyesGames/iyes_blueprints"]
iyes_blueprints = { path = "../iyes_blueprints/" }
[patch."https://github.com/IyesGames/iyes2d_autotilemap"]
iyes2d_autotilemap = { path = "../iyes2d_autotilemap/" }