generated from Leafwing-Studios/template-repo
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
30 lines (26 loc) · 879 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
[package]
name = "leafwing_2d"
description = "Helper functions and structs for working with 2D space in Bevy."
version = "0.1.0"
authors = ["Leafwing Studios"]
repository = "https://github.com/leafwing-studios/leafwing_2d"
license = "MIT OR Apache-2.0"
edition = "2021"
categories = ["game-development"]
keywords = ["bevy"]
exclude = ["assets/**/*", "tools/**/*", ".github/**/*"]
resolver = "2"
[profile.dev]
opt-level = 3
[workspace]
members = ["./", "tools/ci"]
[dependencies]
bevy_app = {version = "0.7", default-features = false}
bevy_ecs = { version = "0.7", default-features = false}
bevy_math = { version = "0.7", default-features = false}
bevy_transform = { version = "0.7", default-features = false}
bevy_core = {version = "0.7", default-features = false}
derive_more = "0.99"
leafwing_2d_macros = { path = "macros", version = "0.1" }
[dev-dependencies]
bevy = "0.7"