moa/emulator/frontends/common/Cargo.toml

22 lines
532 B
TOML
Raw Permalink 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" }
2024-03-17 19:26:00 +00:00
nix = { version = "0.28", optional = true, features = ["term", "fs"] }
2022-10-11 17:28:59 +00:00
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
2024-03-17 19:26:00 +00:00
cpal = { version = "0.15", optional = true }
2022-10-11 17:28:59 +00:00
[target.'cfg(target_arch = "wasm32")'.dependencies]
2024-03-17 19:26:00 +00:00
cpal = { version = "0.15", optional = true, features = ["wasm-bindgen"] }