-
Notifications
You must be signed in to change notification settings - Fork 38
/
Cargo.toml
31 lines (28 loc) · 895 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
[package]
name = "coreaudio-sys"
version = "0.2.16"
authors = ["Mitchell Nordine <[email protected]>"]
description = "Bindings for Apple's CoreAudio frameworks generated via rust-bindgen"
license = "MIT"
keywords = ["core", "audio", "unit", "osx", "ios"]
readme = "README.md"
homepage = "https://github.com/RustAudio/coreaudio-sys"
repository = "https://github.com/RustAudio/coreaudio-sys.git"
build = "build.rs"
[build-dependencies.bindgen]
version = "0.70"
default-features = false
features = ["runtime"]
[features]
default = ["audio_toolbox", "audio_unit", "core_audio", "audio_server_plugin", "open_al", "core_midi"]
audio_toolbox = []
audio_unit = []
core_audio = []
audio_server_plugin = []
io_kit_audio = []
open_al = []
core_midi = []
[package.metadata.docs.rs]
all-features = true
default-target = "x86_64-apple-darwin"
targets = ["x86_64-apple-darwin", "x86_64-apple-ios"]