-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (22 loc) · 808 Bytes
/
Cargo.toml
File metadata and controls
25 lines (22 loc) · 808 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
[package]
name = "afrim-preprocessor"
version = "0.6.3"
edition = "2021"
description = "A preprocessor to process keyboard events for an input method."
keywords = ["ime", "processor", "keyboard"]
categories = ["hardware-support"]
readme = "README.md"
repository.workspace = true
license.workspace = true
authors.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = []
inhibit = []
serde = ["dep:serde", "keyboard-types/serde"]
[dependencies]
keyboard-types = { version = "0.8.3", default-features = false }
afrim-memory = { version = "0.4.2", path = "../../memory" }
serde = { version = "1.0.228", features = ["derive"], optional = true }
[dev-dependencies]
keyboard-types = { version = "0.8.3", features = ["webdriver"] }