-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (31 loc) · 1.14 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
[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"] }
embassy-embedded-hal = { version = "0.3", features = ["defmt"] }
embassy-rp = { version = "0.3", features = ["defmt", "unstable-pac", "time-driver", "critical-section-impl", "rp2040"] }
embassy-time = { version = "0.4", features = ["defmt"] }
embassy-sync = { version = "0.6", features = ["defmt"] }
embassy-executor = { version = "0.7", features = ["defmt", "task-arena-size-98304", "arch-cortex-m", "executor-thread", "executor-interrupt" ] }
embassy-futures = "0.1"
static_cell = "2.1.0"
audio-codec-algorithms = "0.7.0"
[[bin]]
name = "backyard_rain"
test = false
[profile.release]
debug = 2
lto = true
opt-level = 'z'