-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
37 lines (32 loc) · 897 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
32
33
34
35
36
37
[package]
name = "crokey"
version = "1.1.0"
authors = ["dystroy <[email protected]>"]
edition = "2021"
keywords = ["key", "parse"]
license = "MIT"
categories = ["command-line-interface", "parsing"]
description = "Parse and describe keys - helping incorporate keybindings in terminal applications"
repository = "https://github.com/Canop/crokey"
readme = "README.md"
rust-version = "1.56"
[features]
default = ["serde"]
[dependencies]
crossterm = "0.28"
crokey-proc_macros = { path = "src/proc_macros", version = "1.1.0" }
once_cell = "1.12"
serde = { optional = true, version = "1.0.130", features = ["derive"] }
strict = "0.2"
[dev-dependencies]
deser-hjson = "1.0"
trybuild = "1.0.55"
[workspace]
members = [
"src/proc_macros",
"examples/deser_keybindings",
"examples/print_key",
"examples/print_key_no_combiner",
]
[patch.crates-io]
# strict = { path = "../strict" }