-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
39 lines (33 loc) · 1009 Bytes
/
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
[package]
name = "esp-tm1637"
version = "0.1.3"
authors = ["Sergei Makarov <setser200018@gmail.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
keywords = ["embedded", "embedded-hal-driver"]
categories = ["embedded", "hardware-support", "no-std"]
description = "Yet another platform agnostic driver for a LED-display powered by TM1637 chip"
repository = "https://github.com/SeTSeR/esp32-tm1637"
include = [
"**/*.rs",
"Cargo.toml",
]
[dependencies]
hal = { package = "embedded-hal", version = "0.2.7", features = [ "unproven" ] }
log = { version = "0.4.18" }
[dev-dependencies]
esp-hal = { package = "esp32-hal", version = "0.16.0" }
esp-backtrace = { version = "0.9.0", features = ["esp32", "panic-handler", "exception-handler", "print-uart"] }
esp-println = { version = "0.7.0", features = ["esp32", "log"] }
[[example]]
name = "send-bytes"
[[example]]
name = "send-digits"
[[example]]
name = "clocks"
[profile.lto]
inherits = "release"
opt-level = 3
debug = 0
strip = "symbols"
lto = "thin"