-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
55 lines (47 loc) · 1014 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
edition = "2018"
authors = ["Daniel Egger <[email protected]>"]
categories = [
"embedded",
"no-std",
]
description = "Firmware for my MCU power meter based upon STM32F042 and INA260"
documentation = "https://docs.rs/mcumeter"
keywords = [
"arm",
"cortex-m",
"template",
]
license = "0BSD"
name = "mcumeter"
repository = "https://github.com/therealprof/MCUmeter-software"
version = "0.2.0"
readme = "README.md"
[dependencies]
cortex-m = "0.7"
cortex-m-rt = "0.7"
ssd1306 = "0.7"
panic-halt = "0.2"
ina260 = "0.3"
embedded-graphics = "0.7"
heapless = "0.7"
[dependencies.embedded-hal]
features = ["unproven"]
version = "0.2"
[dependencies.stm32f0xx-hal]
features = ["stm32f042", "rt"]
version = "0.18"
[dependencies.shared-bus]
optional = false
version = "0.2.0-alpha.1"
[dependencies.display-interface]
version = "0.4"
[dependencies.display-interface-i2c]
version = "0.4"
[profile.dev]
debug = true
opt-level = "s"
[profile.release]
debug = true
lto = true
opt-level = "s"