moa/emulator/frontends/common/Cargo.toml

22 lines
505 B
TOML
Raw Normal View History

[package]
2024-02-25 03:26:28 +00:00
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 = "0.1"
2024-02-25 03:26:28 +00:00
moa-core = { path = "../../core" }
moa-host = { path = "../../libraries/host" }
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"] }