-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 749 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 749 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
31
[package]
name = "keymatrix"
version = "0.1.2"
authors = ["Ze'ev Klapow <zklapow@gmail.com>"]
description = "Generate generic key matrix drivers for use with embedded-hal"
keywords = ["no-std", "arm", "cortex-m", "embedded-hal-driver"]
repository = "https://github.com/zklapow/keymatrix"
license = "MIT"
[dependencies]
cortex-m = "~0.5"
generic-array = "~0.11"
embedded-hal = "~0.2"
[dev-dependencies]
cortex-m = "~0.5"
embedded-hal = "~0.2"
nb = "~0.1"
cortex-m-rt = "~0.6"
cortex-m-rtfm = "~0.3"
atsamd21-hal = "~0.2"
samd21g18a = "~0.2"
samd21_mini = "~0.1"
panic-abort = "~0.2"
[[print_matrix]]
name = "print_matrix"
required-features = ["samd21"]
[features]
samd21 = ["atsamd21-hal/samd21g18a-rt", "samd21_mini/rt", "samd21_mini/unproven"]