-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (21 loc) · 716 Bytes
/
Cargo.toml
File metadata and controls
26 lines (21 loc) · 716 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
[package]
name = "keytokey"
version = "0.5.0"
authors = ["Tyberius Prime <tyberius_prime@coonabibba.de>"]
edition = "2018"
description = "A keyboard firmware library turning event streams of key presses into reports for USB"
repository = "https://github.com/TyberiusPrime/KeyToKey"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
heapless = "0.7"
num_enum = "0.3.1"
spin="0.5"
#num_enum = {path = "../num_enum"}
no-std-compat = {version="0.4.1", features=["alloc", ]}
[dependencies.lazy_static]
version = "1.3.0"
features = ["spin_no_std"]
[dependencies.smallbitvec]
#git = "https://github.com/servo/smallbitvec"
version = "2.5.3"