-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
89 lines (69 loc) · 2.18 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[package]
name = "licorne-rs"
edition = "2018"
version = "0.0.1"
authors = ["Marc <[email protected]>"]
description = "Simple alarmclock that changes color depending on the time for predefined periods. It is intended for small kids before they can read the time !"
keywords = ["arm", "cortex-m", "template"]
categories = ["embedded", "no-std"]
license = "GPL-3.0+"
repository = "https://github.com/dkm/licorne-rs"
[profile.release]
lto = true
codegen-units = 1
debug = true
panic = "abort"
[profile.dev]
lto = false
codegen-units = 1
debug = true
panic = "abort"
[dependencies]
ws2812-spi = "0.3"
rotary-encoder-hal = {version = "0.3" , features = ["table-decoder"] }
debouncr = "0.2"
ufmt = "0.1"
tm4c123x = { git = "https://github.com/rust-embedded-community/dslite2svd.git" }
embedded-various-fonts = { git = "https://github.com/dkm/embedded-various-fonts" }
tm4c-hal = { git = "https://github.com/dkm/tm4c-hal" }
tm4c123x-hal = { git = "https://github.com/dkm/tm4c-hal", features = ["rt"] }
ds323x = "0.3"
chrono = { version = "0.4", default-features = false }
nb = "0.1"
cortex-m = "0.7"
cortex-m-semihosting = "0.3"
panic-semihosting = "0.5"
smart-leds = "0.3"
## Waiting for next release with 2in13 support
epd-waveshare = {git = "https://github.com/caemor/epd-waveshare.git", branch = "main" }
embedded-graphics = "0.6"
cortex-m-rtic = { git = "https://github.com/rtic-rs/cortex-m-rtic" }
bme680 = { version = "0.5", optional = true }
drogue-bme680 = { git = "https://github.com/dkm/drogue-bme680.git", branch = "main" }
embedded-time = { version = "0.10" }
[dependencies.heapless]
version = "0.5"
features = ["ufmt-impl"]
[dependencies.cast]
version = "0.2"
default-features = false
[dependencies.cortex-m-rt]
version = "0.6.12"
features = ["device"]
## we need to keep it optimized or the SPI won't be able to keep-up and it
## simply does not work
[profile.dev.package.ws2812-spi]
opt-level = 3
[profile.dev.package.smart-leds]
opt-level = 3
[dependencies.embedded-hal]
version = "0.2"
features = ["unproven"]
[features]
default = [ ]
## This will use semihosting for printing debug trace.
usesemihosting = [ "default" ]
epd = ["default"]
bme = ["default"]
rtc = ["default"]
testranges = ["default"]