forked from RustAudio/coreaudio-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (31 loc) · 1.03 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
[package]
name = "coreaudio-rs"
version = "1.0.0"
authors = ["mitchmindtree <mitchell.nordine@gmail.com>", "yupferris <jake@fusetools.com>"]
description = "A friendly rust interface for Apple's CoreAudio API."
keywords = ["core", "audio", "unit", "osx", "ios"]
readme = "README.md"
license = "MIT/Apache-2.0"
repository = "https://github.com/RustAudio/coreaudio-rs.git"
homepage = "https://github.com/RustAudio/coreaudio-rs"
[lib]
name = "coreaudio"
[[bin]]
name = "example-sine"
path = "examples/sine.rs"
[[bin]]
name = "example-interleaved-sine"
path = "examples/interleaved_sine.rs"
[[bin]]
name = "example-crossfade"
path = "examples/crossfade.rs"
[features]
default = ["audio_toolbox", "audio_unit", "core_audio", "open_al", "core_midi"]
audio_toolbox = ["coreaudio-sys/audio_toolbox"]
audio_unit = ["coreaudio-sys/audio_unit"]
core_audio = ["coreaudio-sys/core_audio"]
open_al = ["coreaudio-sys/open_al"]
core_midi = ["coreaudio-sys/core_midi"]
[dependencies]
bitflags = "1.0"
coreaudio-sys = { version = "0.2", default-features = false }