-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (44 loc) · 1.63 KB
/
Copy pathCargo.toml
File metadata and controls
47 lines (44 loc) · 1.63 KB
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
[workspace]
resolver = "2"
members = [
"crates/embedded-audio",
"crates/embedded-audio-codegen",
"crates/embedded-audio-live",
"crates/embedded-audio-studio",
"examples/stm32wba65ri-pwm-audio",
]
# The firmware example targets thumbv8m and cannot be built for the host, so it
# is excluded from the default workspace build. Build it explicitly with
# `cargo check -p stm32wba65ri-pwm-audio --target thumbv8m.main-none-eabihf`.
default-members = [
"crates/embedded-audio",
"crates/embedded-audio-codegen",
"crates/embedded-audio-live",
"crates/embedded-audio-studio",
]
[workspace.package]
version = "0.2.1"
edition = "2024"
rust-version = "1.87"
authors = ["Gerzain Mata <leftger@gmail.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/leftger/embedded-audio"
readme = "README.md"
[workspace.dependencies]
embedded-audio-core = { path = "crates/embedded-audio", version = "0.2.1", default-features = false }
embedded-audio-codegen = { path = "crates/embedded-audio-codegen", version = "0.2.1" }
embedded-audio-live = { path = "crates/embedded-audio-live", version = "0.2.1" }
heapless = "0.9"
# TODO: pin to a published version once embedded-dsp cuts a release containing StateVariableFilter.
embedded-dsp = { version = "0.5.0", git = "https://github.com/leftger/embedded-dsp", branch = "master", default-features = false, features = [
"libm",
"full",
] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0"
eframe = { version = "0.36", default-features = true }
egui_extras = { version = "0.36", features = ["syntect"] }
rfd = "0.17"
nusb = "0.2"
cpal = "0.18"