forked from RustAudio/dasp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (28 loc) · 1.19 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
[package]
name = "dasp_graph"
description = "A digital audio signal processing graph."
version = "0.11.0"
authors = ["mitchmindtree <[email protected]>"]
readme = "../README.md"
keywords = ["dsp", "audio", "graph", "pcm", "audio"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rustaudio/dasp.git"
homepage = "https://github.com/rustaudio/dasp"
edition = "2018"
[features]
default = ["all-nodes"]
all-nodes = ["node-boxed", "node-delay", "node-graph", "node-pass", "node-signal", "node-sum"]
node-boxed = []
node-delay = ["dasp_ring_buffer"]
node-graph = []
node-pass = []
node-signal = ["dasp_frame", "dasp_signal"]
node-sum = ["dasp_slice"]
[dependencies]
dasp_frame = { version = "0.11", default-features = false, features = ["std"], optional = true }
dasp_ring_buffer = { version = "0.11", default-features = false, features = ["std"], optional = true }
dasp_signal = { version = "0.11", default-features = false, features = ["std"], optional = true }
dasp_slice = { version = "0.11", default-features = false, features = ["std"], optional = true }
petgraph = { version = "0.5", default-features = false }
[dev-dependencies]
petgraph = { version = "0.5", features = ["stable_graph"] }