-
Notifications
You must be signed in to change notification settings - Fork 43
/
Cargo.toml
51 lines (46 loc) · 1.49 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
[package]
name = "fundsp"
description = "Audio processing and synthesis library."
keywords = ["dsp", "audio", "synthesizer", "sound", "no_std"]
categories = ["multimedia::audio", "no-std"]
license = "MIT OR Apache-2.0"
version = "0.20.0"
authors = ["SamiPerttu <Sami.Perttu@gmail.com>"]
homepage = "https://github.com/SamiPerttu/fundsp"
repository = "https://github.com/SamiPerttu/fundsp"
readme = "README.md"
edition = "2021"
[dependencies]
numeric-array = { version = "0.6.1", default-features = false }
dyn-clone = "1.0.17"
libm = "0.2.8"
wide = { version = "0.7.28", default-features = false }
num-complex = { version = "0.4.6", default-features = false, features = ["libm"] }
tinyvec = { version = "1.8.0", features = ["alloc"] }
hashbrown = "0.15.0"
microfft = { version = "0.6.0", features = ["size-32768"] }
funutd = { version = "0.16.0", default-features = false }
thingbuf = { version = "0.1.6", default-features = false, features = ["alloc"] }
once_cell = { version = "1.20.1", default-features = false, features = ["race", "alloc"] }
symphonia = { version = "0.5.4", optional = true, features = ["all"] }
[dev-dependencies]
anyhow = "1.0.89"
criterion = "0.5.1"
cpal = "0.15.3"
assert_no_alloc = "1.1.2"
eframe = "0.29.1"
plotters = "0.3.7"
midi-msg = "0.5.0"
midir = "0.9.1"
read_input = "0.8.6"
rayon = "1.10.0"
[features]
default = ["std", "files"]
std = []
files = ["dep:symphonia"]
[[bench]]
name = "benchmark"
harness = false
[package.metadata.docs.rs]
all-features = true
rustc-args = ["--cfg", "docsrs"]