cpal/Cargo.toml

28 lines
884 B
TOML
Raw Normal View History

2014-12-11 13:22:55 +00:00
[package]
name = "cpal"
version = "0.5.1"
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-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"
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" }
libc = "0.2"
2017-10-10 16:24:53 +00:00
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies]
coreaudio-rs = "0.7.0"
[target.'cfg(target_os = "emscripten")'.dependencies]
stdweb = { version = "0.1.3", default-features = false }