-
Notifications
You must be signed in to change notification settings - Fork 16
/
Cargo.toml
35 lines (31 loc) · 1 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
[package]
name = "audrey"
version = "0.3.0"
authors = ["mitchmindtree <[email protected]>"]
keywords = ["audio", "format", "decode", "encode", "convert"]
description = "A crate to simplify reading, writing and converting between a range of audio formats."
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/RustAudio/audrey.git"
homepage = "https://github.com/RustAudio/audrey"
documentation = "https://docs.rs/audrey"
categories = ["multimedia::audio"]
edition = "2018"
[dependencies]
claxon = { optional = true, version = "0.4" }
hound = { optional = true, version = "3" }
lewton = { optional = true, version = "0.10" }
caf = { optional = true, version = "0.1" }
alac = { optional = true, version = "0.5" }
dasp_sample = "0.11.0"
dasp_frame = "0.11.0"
[dev-dependencies]
cpal = "0.10"
[features]
default = ["flac", "ogg_vorbis", "wav", "caf_alac"]
flac = ["claxon"]
ogg_vorbis = ["lewton"]
wav = ["hound"]
caf_alac = ["alac", "caf"]
[package.metadata.docs.rs]
all-features = true