-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (37 loc) · 1.71 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
[package]
name = "backyard_rain"
version = "0.1.0"
description = "Nature soundscape audio. A cozy rain ambience mix for background listening"
license = "MIT OR Apache-2.0"
authors = ["Brian Dorsey"]
edition = "2021"
[dependencies]
wscomp = { path = "../wscomp" }
defmt = "0.3"
defmt-rtt = "0.4"
cortex-m = { version = "0.7.6", features = ["inline-asm"] }
cortex-m-rt = "0.7.0"
critical-section = "1.1"
panic-probe = { version = "0.3", features = ["print-defmt"] }
portable-atomic = { version = "1.10.0", features = ["critical-section"] }
# unfortunately, embassy-rp only recently added pwm::SetDutyCycle and it's
# not in the released embassy-rp 0.2.0, so a local checkout of embassy is
# needed until a new release of embassy-rp. (or more likely, there is a better
# workaround with embedded-hal? But I gave up after a few hours of fiddling.)
# TODO: replace these local path entries once a new version of embassy-rp is
# released
embassy-embedded-hal = { version = "0.2.0", path = "../../embassy/embassy-embedded-hal", features = ["defmt"] }
embassy-rp = { version = "0.2.0", path = "../../embassy/embassy-rp", features = ["defmt", "unstable-pac", "time-driver", "critical-section-impl", "rp2040"] }
embassy-time = { version = "0.3.2", path = "../../embassy/embassy-time", features = ["defmt"] }
embassy-sync = { version = "0.6.1", features = ["defmt"] }
embassy-executor = { version = "0.6.3", path = "../../embassy/embassy-executor", features = ["defmt", "task-arena-size-98304", "arch-cortex-m", "executor-thread", "executor-interrupt", "integrated-timers"] }
embassy-futures = "0.1.1"
static_cell = "2.1.0"
audio-codec-algorithms = "0.6.0"
[[bin]]
name = "backyard_rain"
test = false
[profile.release]
debug = 2
lto = true
opt-level = 'z'