-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (26 loc) · 706 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (26 loc) · 706 Bytes
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
[workspace]
resolver = "2"
members = []
[package]
name = "bevy_global_input"
version = "0.4.0"
authors = ["laundmo <laurinschmidt2001@gmail.com>"]
readme = "README.md"
description = """
Global mouse + keyboard input for bevy - doesn't require a focused window.
"""
license = "MIT OR Apache-2.0"
repository = "https://github.com/laundmo/bevy_global_input"
documentation = "https://docs.rs/bevy_global_input"
keywords = ["bevy", "input", "mouse", "keyboard"]
categories = []
edition = "2021"
[features]
default = []
[dependencies]
bevy = { version = "0.11", default-features = false, features = [] }
mouce = "0.2.43"
mki = "0.2.3"
crossbeam-channel = "0.5"
[dev-dependencies]
bevy = { version = "0.11" }