mirror of
https://github.com/transistorfet/moa.git
synced 2024-11-15 09:05:15 +00:00
22 lines
505 B
TOML
22 lines
505 B
TOML
[package]
|
|
name = "moa-common"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
tty = ["nix"]
|
|
audio = ["cpal"]
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
femtos = "0.1"
|
|
moa-core = { path = "../../core" }
|
|
moa-host = { path = "../../libraries/host" }
|
|
nix = { version = "0.25", optional = true }
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
cpal = { version = "0.14", optional = true }
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
cpal = { version = "0.14", optional = true, features = ["wasm-bindgen"] }
|