2014-12-11 13:22:55 +00:00
|
|
|
[package]
|
|
|
|
name = "cpal"
|
2017-04-28 15:04:13 +00:00
|
|
|
version = "0.4.5"
|
2016-08-12 15:51:15 +00:00
|
|
|
authors = ["The CPAL contributors", "Pierre Krieger <pierre.krieger1708@gmail.com>"]
|
|
|
|
description = "Low-level cross-platform audio playing library in pure Rust."
|
2014-12-16 18:02:53 +00:00
|
|
|
repository = "https://github.com/tomaka/cpal"
|
2016-10-01 08:30:38 +00:00
|
|
|
documentation = "https://docs.rs/cpal"
|
2014-12-16 18:02:53 +00:00
|
|
|
license = "Apache-2.0"
|
2014-12-11 16:59:05 +00:00
|
|
|
keywords = ["audio", "sound"]
|
2014-12-11 13:22:55 +00:00
|
|
|
|
2015-02-12 12:56:30 +00:00
|
|
|
[dependencies]
|
2016-10-01 07:09:50 +00:00
|
|
|
futures = "0.1.1"
|
2015-11-10 06:39:24 +00:00
|
|
|
libc = "0.2"
|
2016-07-26 04:08:16 +00:00
|
|
|
lazy_static = "0.2"
|
2017-02-07 13:41:42 +00:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
2016-07-26 04:08:16 +00:00
|
|
|
winapi = "0.2.8"
|
|
|
|
ole32-sys = "0.2"
|
2016-08-02 14:13:59 +00:00
|
|
|
kernel32-sys = "0.2"
|
2015-07-04 12:13:15 +00:00
|
|
|
|
2017-02-07 13:41:42 +00:00
|
|
|
[target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd"))'.dependencies]
|
|
|
|
alsa-sys = { version = "0.1", path = "alsa-sys" }
|
2017-01-19 13:51:50 +00:00
|
|
|
|
2017-02-07 13:41:42 +00:00
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
2016-08-12 07:49:13 +00:00
|
|
|
coreaudio-rs = "0.6"
|