-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
36 lines (32 loc) · 993 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
[package]
name = "co2-sensor"
version = "0.1.0"
authors = ["blinry <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
[dependencies]
esp-hal = { version = "1.0.0-beta.0", features = ["esp32c6", "unstable"] }
esp-backtrace = { version = "0.15.1", features = ["println", "esp32c6", "panic-handler", "exception-handler"] }
esp-println = { version = "0.13.1", features = ["esp32c6"] }
epd-waveshare = "0.6.0"
embedded-graphics = "0.8.0"
heapless = "0.8.0"
embedded-hal-bus = "0.3.0"
u8g2-fonts = "0.5.2"
embedded-hal = "1.0.0"
itertools = { version = "0.14.0", default-features = false }
max170xx = "1.0.0"
#[features]
#default = ["esp-hal/xtal-40mhz"]
[profile.dev]
# Rust debug is too slow.
# For debug builds always builds with some optimization
opt-level = "s"
[profile.release]
codegen-units = 1 # LLVM can perform better optimizations using a single thread
debug = 2
debug-assertions = false
incremental = false
lto = 'fat'
opt-level = 's'
overflow-checks = false