-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (47 loc) · 1.3 KB
/
Copy pathCargo.toml
File metadata and controls
58 lines (47 loc) · 1.3 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
48
49
50
51
52
53
54
55
56
57
58
[package]
name = "embedded-audio"
version = "0.2.0"
edition = "2024"
authors = ["Gerzain Mata <leftger@gmail.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/leftger/embedded-audio"
description = "no_std duty-modulated PWM audio: effect banks, tiered DSP, and mixing for Cortex-M"
keywords = ["embedded", "audio", "pwm", "dsp", "no-std"]
categories = ["embedded", "no-std"]
readme = "README.md"
[features]
default = []
std = []
fm = []
dsp = ["dep:embedded-dsp"]
[dependencies]
heapless = "0.9"
embedded-dsp = { git = "https://github.com/leftger/embedded-dsp", version = "0.1.0", default-features = false, features = ["libm"], optional = true }
[dev-dependencies]
heapless = "0.9"
embedded-dsp = { git = "https://github.com/leftger/embedded-dsp", version = "0.1.0", default-features = false, features = ["libm"] }
[lib]
name = "embedded_audio"
path = "src/lib.rs"
[[bin]]
name = "eaf-bake"
path = "tools/bake/main.rs"
required-features = ["std"]
[[bin]]
name = "eaf-preview"
path = "tools/preview/main.rs"
required-features = ["std"]
[[test]]
name = "tiers"
path = "tests/tiers.rs"
[[test]]
name = "fm"
path = "tests/fm.rs"
required-features = ["fm"]
[[test]]
name = "buffer_and_bake"
path = "tests/buffer_and_bake.rs"
[[test]]
name = "preview"
path = "tests/preview.rs"
required-features = ["std"]