[package]
edition = "2021"
name = "cranpose-audio"
version = "0.1.86"
authors = ["Dmitry Samoylenko"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Real-time audio engine for Cranpose (AAudio on Android/Wear OS, cpal on desktop)"
homepage = "https://samoylenkodmitry.github.io/cranpose/"
readme = "README.md"
keywords = [
"gui",
"ui",
"compose",
"declarative",
"framework",
]
categories = ["gui"]
license = "Apache-2.0"
repository = "https://github.com/samoylenkodmitry/cranpose"
[features]
aaudio = ["dep:ndk"]
cpal-backend = ["dep:cpal"]
default = ["aaudio"]
[lib]
name = "cranpose_audio"
path = "src/lib.rs"
[dependencies.cranpose-services]
version = "0.1.86"
default-features = false
[dependencies.log]
version = "0.4"
[target.'cfg(not(any(target_os = "android", target_arch = "wasm32")))'.dependencies.cpal]
version = "0.18.1"
optional = true
[target.'cfg(target_os = "android")'.dependencies.ndk]
version = "0.9.0"
features = ["audio"]
optional = true
default-features = false