-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (44 loc) · 1.21 KB
/
Cargo.toml
File metadata and controls
51 lines (44 loc) · 1.21 KB
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
50
[workspace]
members = [ "macros" ]
[package]
name = "keyseq"
description = "Specify key chords using `Ctrl-A` short-hand"
version = "0.8.0"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["Shane Celis <shane.celis@gmail.com>"]
keywords = [
"keyboard",
"bevy",
"winit",
"hotkey",
]
categories = [
"gui"
]
repository = "https://github.com/shanecelis/keyseq"
readme = "README.md"
[badges]
maintenance = { status = "actively-developed" }
[features]
default = ["strict-order"]
winit = ["dep:winit", "keyseq_macros/winit"]
bevy = ["dep:bevy", "dep:bevy_reflect", "keyseq_macros/bevy", "bevy/bevy_winit"]
strict-order = ["keyseq_macros/strict-order"]
poor = ["keyseq_macros/poor"]
permit-plus = ["keyseq_macros/permit-plus"]
[dependencies]
keyseq_macros = { version = "0.4.0", path = "macros" }
bevy = { version = "0.18", default-features = false, optional = true }
bevy_reflect = { version = "0.18", optional = true }
winit = { version = "0.30", default-features = false, optional = true }
bitflags = "2.9"
[dev-dependencies]
bevy = { version = "0.18", default-features = true }
version-sync = "0.9"
[[example]]
name = "winit"
required-features = ["winit"]
[[example]]
name = "bevy"
required-features = ["bevy"]