forked from RustAudio/dasp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (33 loc) · 1005 Bytes
/
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
[package]
name = "dasp_interpolate"
description = "An abstraction for audio PCM DSP rate interpolation, including floor, linear and sinc."
version = "0.11.0"
authors = ["mitchmindtree <[email protected]>"]
readme = "../README.md"
keywords = ["dsp", "interpolate", "sample", "rate", "pcm"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rustaudio/dasp.git"
homepage = "https://github.com/rustaudio/dasp"
edition = "2018"
[dependencies]
dasp_frame = { version = "0.11", path = "../dasp_frame", default-features = false }
dasp_ring_buffer = { version = "0.11", path = "../dasp_ring_buffer", default-features = false }
dasp_sample = { version = "0.11", path = "../dasp_sample", default-features = false }
[features]
default = ["std"]
all = ["std", "all-no-std"]
all-no-std = [
"floor",
"linear",
"sinc",
]
std = [
"dasp_frame/std",
"dasp_ring_buffer/std",
"dasp_sample/std",
]
floor = []
linear = []
sinc = []
[package.metadata.docs.rs]
all-features = true