moa/emulator/frontends/common/Cargo.toml

19 lines
433 B
TOML
Raw Normal View History

[package]
name = "moa_common"
version = "0.1.0"
edition = "2021"
[features]
tty = ["nix"]
audio = ["cpal"]
[dependencies]
moa_core = { path = "../../core" }
nix = { version = "0.25", optional = true }
2022-10-11 17:28:59 +00:00
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
cpal = { version = "0.14", optional = true }
2022-10-11 17:28:59 +00:00
[target.'cfg(target_arch = "wasm32")'.dependencies]
cpal = { version = "0.14", optional = true, features = ["wasm-bindgen"] }