-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
55 lines (46 loc) · 1.45 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
[package]
authors = ["Cristian Eigel <[email protected]>"]
edition = "2018"
readme = "README.md"
name = "rfid-audio"
version = "0.1.0"
resolver="2"
[dependencies]
cortex-m = "0.7.3"
cortex-m-semihosting = "0.3.7"
cortex-m-rtic = {version = "0.5.9", default-features = false, features = ["cortex-m-7"] }
panic-itm = "0.4.2"
log = { "version" = "0.4.14", features = ["max_level_info", "release_max_level_info"] }
cortex-m-log = { "version" = "0.7.0", features = ["itm", "log-integration"] }
nb = "1.0.0"
[dependencies.mfrc522]
version = "0.2.0"
git="https://github.com/ceigel/mfrc522.git"
#path="../mfrc522"
[dependencies.embedded-mp3]
version = "0.1.0"
#git = "https://github.com/ceigel/embedded-mp3-rust.git"
path="../embedded-mp3/"
[dependencies.stm32l4xx-hal]
features = ["stm32l431", "rt"]
git = "https://github.com/stm32-rs/stm32l4xx-hal.git"
#path="../stm32l4xx-hal/"
[dependencies.embedded-sdmmc]
git = "https://github.com/rust-embedded-community/embedded-sdmmc-rs.git"
#path="../embedded-sdmmc-rs/"
rev = "8d27bebbf75623e5e52b63c7f41fa63ee04142ab"
# this lets you use `cargo fix`!
[[bin]]
name = "rfid-audio"
test = false
bench = false
[profile.release]
codegen-units = 1 # better optimizations
debug = true # symbols are nice and they don't increase the size on Flash
lto = true # better optimizations
opt-level = 3
[profile.dev]
opt-level='z'
[profile.dev.package."*"]
opt-level='z'
debug = true # symbols are nice and they don't increase the size on Flash