-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
53 lines (48 loc) · 1.03 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
[package]
name = "picorust"
version = "0.0.0"
edition = "2021"
authors = ["Folke Behrens <[email protected]>"]
description = "Raspberry Pi Pico experiments with Rust"
license = "Apache-2.0"
repository = "https://github.com/cloneable/picorust"
[dependencies]
cortex-m = "0.7.4"
cortex-m-rt = "0.7.1"
defmt = "0.3.1"
defmt-rtt = "0.3.2"
embedded-hal = "0.2.7"
embedded-time = "0.12.1"
panic-probe = { version = "0.3.0", features = ["print-defmt"] }
rp-pico = "0.3.0"
[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
incremental = false
lto = true
opt-level = 3
overflow-checks = false
strip = true
[profile.dev]
codegen-units = 1
debug = 2
debug-assertions = true
incremental = false
opt-level = 3
overflow-checks = true
strip = false
[profile.release.build-override]
codegen-units = 64
debug = false
debug-assertions = false
incremental = true
opt-level = 0
overflow-checks = false
[profile.dev.build-override]
codegen-units = 64
debug = false
debug-assertions = false
incremental = true
opt-level = 0
overflow-checks = false