forked from BillyDM/rtaudio-sys
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
32 lines (27 loc) · 814 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
[package]
name = "rtaudio-sys"
version = "0.3.3"
edition = "2021"
authors = ["Billy Messenger <[email protected]>"]
description = "Raw bindings for RtAudio"
license = "MIT"
repository = "https://github.com/BillyDM/rtaudio-sys"
readme = "README.md"
keywords = ["audio", "sound", "rtaudio"]
categories = ["multimedia::audio", "external-ffi-bindings"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["coreaudio", "alsa", "pulse", "oss", "wasapi", "ds"]
coreaudio = []
alsa = []
jack_linux = []
pulse = []
oss = []
asio = []
wasapi = []
ds = []
[dependencies]
[build-dependencies]
cmake = "0.1"
[target.'cfg(any(target_os="linux", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd"))'.build-dependencies]
pkg-config = "0.3"