forked from not-elm/bevy-input-sequence
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fbb12c6
commit 2ca3f55
Showing
4 changed files
with
55 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "bevy-input-sequence" | ||
description = "Recognizes input sequences and send events" | ||
version = "0.5.0" | ||
description = "Recognizes and acts on input sequences" | ||
version = "0.6.0" | ||
edition = "2021" | ||
authors = ["elm", "Shane Celis <[email protected]>"] | ||
keywords = [ | ||
|
@@ -18,22 +18,18 @@ readme = "README.md" | |
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/elm-register/bevy-input-sequence" | ||
|
||
|
||
[[example]] | ||
name = "keycode" | ||
path = "examples/keycode.rs" | ||
|
||
|
||
[[example]] | ||
name = "gamepad_button" | ||
path = "examples/gamepad_button.rs" | ||
|
||
|
||
[[example]] | ||
name = "multiple_input" | ||
path = "examples/multiple_input.rs" | ||
|
||
|
||
[dependencies] | ||
bevy = { version = "0.14", default-features = false, features = [] } | ||
trie-rs = { version = "0.4" } | ||
|
@@ -43,3 +39,6 @@ keyseq = { version = "0.4.0", features = [ "bevy" ] } | |
bevy = "0.14" | ||
trybuild = "1.0" | ||
version-sync = "0.9" | ||
|
||
[patch.crates-io] | ||
keyseq = { path = "../keyseq" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters