forked from Leafwing-Studios/leafwing_abilities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (43 loc) · 1.33 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
[package]
name = "leafwing_abilities"
description = "A convenient, well-tested ability management suite. Built for the Bevy game engine."
version = "0.9.0"
authors = ["Leafwing Studios"]
homepage = "https://leafwing-studios.com/"
repository = "https://github.com/leafwing-studios/leafwing_abilities"
license = "MIT OR Apache-2.0"
edition = "2021"
categories = ["games", "game-development"]
keywords = ["bevy"]
exclude = ["assets/**/*", "tools/**/*", ".github/**/*"]
[profile.dev]
opt-level = 3
[workspace]
members = ["./", "tools/ci", "macros"]
[features]
default = ["premade_pools"]
# Premade life and mana resource pools to get you started
premade_pools = []
[dependencies]
bevy = { version = "0.14", default-features = false, features = [
"serialize",
"bevy_gilrs",
] }
serde = { version = "1.0", features = ["derive"] }
leafwing-input-manager = { version = "0.15", default-features = false }
leafwing_abilities_macros = { path = "macros", version = "0.3" }
thiserror = "1.0.37"
derive_more = "0.99.17"
[dev-dependencies]
bevy = { version = "0.14", default-features = false, features = [
"bevy_asset",
"bevy_sprite",
"bevy_text",
"bevy_ui",
"bevy_render",
"bevy_core_pipeline",
"x11",
"default_font",
] }
# Needed to provide implementations for standard input devices
leafwing-input-manager = { version = "0.15", default-features = true }