forked from Seldom-SE/seldom_state
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (26 loc) · 884 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
[package]
name = "seldom_state"
version = "0.6.2"
edition = "2021"
categories = [ "game-development" ]
description = "Component-based state machine plugin for Bevy. Useful for AI, player state, and other entities that occupy various states."
exclude = [ "assets/" ]
keywords = [ "gamedev", "bevy", "ai", "state-machine" ]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/Seldom-SE/seldom_state"
[features]
leafwing_input = [ "dep:leafwing-input-manager" ]
[dependencies]
bevy = { version = "0.10", default-features = false }
either = "1"
leafwing-input-manager = { version = "0.9", default-features = false, optional = true }
seldom_fn_plugin = { version = "0.3" }
[dev-dependencies]
bevy = "0.10"
leafwing-input-manager = "0.9"
[[example]]
name = "input"
required-features = [ "leafwing_input" ]
[package.metadata.docs.rs]
all-features = true