-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
35 lines (30 loc) · 815 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
[package]
name = "bevy_simple_tilemap"
version = "0.16.0"
authors = ["Forb.Jok <[email protected]>"]
edition = "2021"
description = "Refreshingly simple tilemap implementation for Bevy Engine."
license = "MIT/Apache-2.0"
repository = "https://github.com/forbjok/bevy_simple_tilemap.git"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bitflags = "2.6.0"
bytemuck = "1.20.0"
[dependencies.bevy]
version = "0.15.0"
default-features = false
features = [
"bevy_asset",
"bevy_core_pipeline",
"bevy_pbr",
"bevy_render",
"bevy_sprite",
"bevy_window",
"png",
]
[dev-dependencies.bevy]
version = "0.15.0"
default-features = false
features = ["x11", "png", "wayland"]
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
rayon = "1.10.0"