-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
72 lines (59 loc) · 1.89 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[package]
name = "angry-surgeon"
version = "0.1.0"
edition = "2021"
[features]
log-sdio = []
[dependencies]
cortex-m = "0.7.7"
cortex-m-rt = "0.7.3"
defmt = "0.3.6"
defmt-rtt = "0.4.0"
panic-probe = { version = "0.3.1", features = ["print-defmt"] }
aligned = "0.4.2"
biquad = "0.4.2"
critical-section = "1.1.2"
embedded-alloc = "0.5.1"
embedded-graphics = "0.8.1"
embedded-io-async = "0.6.1"
fixed = "1.28.0"
fugit = "0.3.7"
microfft = { version = "0.6.0", features = ["size-256"], defualt-features = false }
micromath = { version = "2.1.0", features = ["num-traits"] }
mpr121-hal = "0.3.0"
pio = "0.2.1"
pio-proc = "0.2.2"
portable-atomic = { version = "1.7.0", features = ["critical-section"] }
rand = { version = "0.8.5", default-features = false }
ssd1306 = { version = "0.9.0", features = ["async"] }
static_cell = "2.1.0"
tinybmp = "0.6.0"
[dependencies.embedded-fatfs]
git = "https://github.com/MabezDev/embedded-fatfs"
features = ["lfn"]
default-features = false
[dependencies.block-device-adapters]
git = "https://github.com/MabezDev/embedded-fatfs"
default-features = false
[dependencies.block-device-driver]
git = "https://github.com/MabezDev/embedded-fatfs"
default-features = false
[dependencies.embassy-rp]
git = "https://github.com/embassy-rs/embassy"
features = ["rp2040", "time-driver", "unstable-pac", "critical-section-impl"]
[dependencies.embassy-executor]
git = "https://github.com/embassy-rs/embassy"
features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "executor-interrupt", "defmt"]
[dependencies.embassy-futures]
git = "https://github.com/embassy-rs/embassy"
[dependencies.embassy-sync]
git = "https://github.com/embassy-rs/embassy"
[dependencies.embassy-time]
git = "https://github.com/embassy-rs/embassy"
features = ["defmt", "defmt-timestamp-uptime", "generic-queue"]
[profile.release]
# codegen-units = 1
# incremental = false
debug = "full"
lto = "fat"
opt-level = "s"