-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
64 lines (51 loc) · 1.25 KB
/
Copy pathCargo.toml
File metadata and controls
64 lines (51 loc) · 1.25 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[workspace]
members = [
"keyberon-smart-keyboard",
"rp2040-rtic-smart-keyboard",
"smart-keymap-macros",
"smart-keymap-nickel-helper",
"smart_keymap",
"stm32-embassy-smart-keyboard",
"stm32f4-rtic-smart-keyboard",
]
[package]
name = "smart-keymap"
version = "0.13.0-dev"
license = "MIT OR Apache-2.0"
edition = "2021"
[features]
default = ["std"]
std = ["serde/std", "dep:serde_json"]
[lib]
name = "smart_keymap"
crate-type = ["lib"]
[[bin]]
name = "sizes"
required-features = ["std"]
[[test]]
name = "rust-integration"
path = "tests/rust/keymap.rs"
[[test]]
name = "cucumber-keymap"
path = "tests/cucumber/keymap.rs"
harness = false
[dependencies]
heapless = { version = "0.8", features = ["serde"] }
libc = "0.2"
paste = "1.0"
postcard = "1.1"
seq-macro = "0.3"
serde = { version = "1.0", features = ["derive"], default-features = false }
serde_json = { version = "1.0", optional = true }
[dev-dependencies]
cucumber = "0.21"
ron = "0.8"
futures = "0.3"
smart-keymap-macros = { path = "./smart-keymap-macros" }
smart-keymap-nickel-helper = { path = "./smart-keymap-nickel-helper" }
[build-dependencies]
smart-keymap-nickel-helper = { path = "./smart-keymap-nickel-helper" }
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"