-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
59 lines (49 loc) · 1.24 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[package]
name = "kaleidoscope"
version = "0.1.0"
authors = ["rmsyn <[email protected]>"]
edition = "2021"
publish = false
[profile.dev]
opt-level = "s"
lto = true
panic = "abort"
codegen-units = 1
[profile.release]
opt-level = "s"
lto = true
panic = "abort"
codegen-units = 1
[dependencies]
avr-progmem = "0.3"
bitfield = "0.14"
panic-halt = "0.2.0"
ufmt = "0.1.0"
nb = "0.1.2"
embedded-hal = "0.2.3"
paste = "1.0"
[dependencies.lock_api]
version = "0.4"
[dependencies.avr-device]
version = "0.5"
features = ["atmega32u4"]
[dependencies.arduino-hal]
version = "0.1"
git = "https://github.com/Rahix/avr-hal"
package = "arduino-hal"
[dependencies.atmega-hal]
version = "0.1"
git = "https://github.com/Rahix/avr-hal"
package = "atmega-hal"
[dependencies.keyboardio-hid]
git = "https://github.com/rmsyn/keyboardio-hid-rs"
branch = "main"
features = ["international"]
[dependencies.kaleidoscope-internal]
#git = "https://github.com/rmsyn/kaleidoscope-internal"
path = "../kaleidoscope-internal"
[features]
default = ["atreus"]
avr = ["kaleidoscope-internal/avr"]
atmega32u4 = ["arduino-hal/arduino-leonardo", "avr-device/atmega32u4", "atmega-hal/atmega32u4", "kaleidoscope-internal/atmega32u4"]
atreus = ["atmega32u4", "avr", "kaleidoscope-internal/atreus"]