moa/emulator/frontends/common/Cargo.toml

21 lines
490 B
TOML
Raw Normal View History

[package]
name = "moa_common"
version = "0.1.0"
edition = "2021"
[features]
tty = ["nix"]
audio = ["cpal"]
[dependencies]
2024-02-24 21:02:09 +00:00
log = "0.4"
femtos = { path = "../../libraries/femtos" }
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"] }