46 lines
1.9 KiB
TOML
46 lines
1.9 KiB
TOML
[package]
|
|
name = "cpal"
|
|
version = "0.12.0"
|
|
authors = ["The CPAL contributors", "Pierre Krieger <pierre.krieger1708@gmail.com>"]
|
|
description = "Low-level cross-platform audio I/O library in pure Rust."
|
|
repository = "https://github.com/rustaudio/cpal"
|
|
documentation = "https://docs.rs/cpal"
|
|
license = "Apache-2.0"
|
|
keywords = ["audio", "sound"]
|
|
|
|
[features]
|
|
asio = ["asio-sys", "num-traits"] # Only available on Windows. See README for setup instructions.
|
|
|
|
[dependencies]
|
|
thiserror = "1.0.2"
|
|
|
|
[dev-dependencies]
|
|
anyhow = "1.0.12"
|
|
hound = "3.4"
|
|
ringbuf = "0.1.6"
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
winapi = { version = "0.3", features = ["audiosessiontypes", "audioclient", "coml2api", "combaseapi", "debug", "devpkey", "handleapi", "ksmedia", "mmdeviceapi", "objbase", "profileapi", "std", "synchapi", "winbase", "winuser"] }
|
|
asio-sys = { version = "0.2", path = "asio-sys", optional = true }
|
|
num-traits = { version = "0.2.6", optional = true }
|
|
parking_lot = "0.9"
|
|
lazy_static = "1.3"
|
|
|
|
[target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd"))'.dependencies]
|
|
alsa = "0.4.1"
|
|
nix = "0.15.0"
|
|
libc = "0.2.65"
|
|
|
|
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies]
|
|
coreaudio-rs = { version = "0.9.1", default-features = false, features = ["audio_unit", "core_audio"] }
|
|
core-foundation-sys = "0.6.2" # For linking to CoreFoundation.framework and handling device name `CFString`s.
|
|
mach = "0.3" # For access to mach_timebase type.
|
|
|
|
[target.'cfg(target_os = "emscripten")'.dependencies]
|
|
stdweb = { version = "0.1.3", default-features = false }
|
|
|
|
[target.'cfg(all(target_arch = "wasm32", target_os = "unknown"))'.dependencies]
|
|
wasm-bindgen = { version = "0.2.58", optional = true }
|
|
js-sys = { version = "0.3.35" }
|
|
web-sys = { version = "0.3.35", features = [ "AudioContext", "AudioContextOptions", "AudioBuffer", "AudioBufferSourceNode", "AudioNode", "AudioDestinationNode", "Window", "AudioContextState"] }
|