cpal/Cargo.toml

40 lines
956 B
TOML
Raw Normal View History

2014-12-11 13:22:55 +00:00
[package]
name = "cpal"
2017-01-19 15:06:17 +00:00
version = "0.4.2"
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"
winapi = "0.2.8"
ole32-sys = "0.2"
2016-08-02 14:13:59 +00:00
kernel32-sys = "0.2"
2016-02-14 20:20:09 +00:00
[target.arm-unknown-linux-gnueabihf.dependencies.alsa-sys]
2016-08-14 18:16:34 +00:00
version = "0.1"
2016-02-14 20:20:09 +00:00
path = "alsa-sys"
[target.mipsel-unknown-linux-gnu.dependencies.alsa-sys]
2016-08-14 18:16:34 +00:00
version = "0.1"
path = "alsa-sys"
2014-12-16 15:07:45 +00:00
[target.i686-unknown-linux-gnu.dependencies.alsa-sys]
2016-08-14 18:16:34 +00:00
version = "0.1"
2014-12-16 15:07:45 +00:00
path = "alsa-sys"
[target.x86_64-unknown-linux-gnu.dependencies.alsa-sys]
2016-08-14 18:16:34 +00:00
version = "0.1"
2014-12-16 15:07:45 +00:00
path = "alsa-sys"
[target.i686-apple-darwin.dependencies]
coreaudio-rs = "0.6"
[target.x86_64-apple-darwin.dependencies]
coreaudio-rs = "0.6"