forked from joshuajbouw/bevy_tilemap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (38 loc) · 1.21 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
[package]
name = "bevy_tilemap"
version = "0.2.2"
authors = ["Joshua J. Bouw <[email protected]>"]
edition = "2018"
description = "Tilemaps with chunks for the Bevy game engine, a simple-driven game engine and app framework"
repository = "https://github.com/joshuajbouw/bevy_tilemap"
license = "MIT"
keywords = ["game", "engine", "bevy", "tiles", "tilemap"]
categories = ["game-engines", "graphics", "gui"]
readme = "README.md"
documentation = "https://docs.rs/bevy_tilemap/latest/bevy_tilemap/"
exclude = ["assets/**/*", ".github/**/*", "doc/**/*"]
[package.metadata.docs.rs]
features = ["serialize", "types"]
default-target = "x86_64-pc-windows-msvc"
[features]
serialize = ["bevy_tilemap_types/serialize", "serde"]
types = []
[workspace]
members = ["library/*"]
[dependencies]
bevy = "0.3"
bevy_tilemap_spritesheet = { path = "library/spritesheet" }
bevy_tilemap_types = { path = "library/types" }
bitflags = "1.2.1"
serde = { version = "1.0", features = ["derive"], optional = true }
[dev-dependencies]
rand = "0.7"
[[example]]
name = "random_dungeon"
path = "examples/random_dungeon.rs"
[[example]]
name = "random_world"
path = "examples/random_world.rs"
[[example]]
name = "stress_dwarves"
path = "examples/stress_dwarves.rs"