moa/frontends/moa-common/Cargo.toml
transistor 39068fec2a Added audio support
It's better than it was but there are still minor drop outs due to
a buffer underrun I think (could be other timing issues related to
the update loop or something else).  Right now, the audio chips
just have some code to produce sine waves for testing.
2021-12-12 15:20:09 -08:00

15 lines
240 B
TOML

[package]
name = "moa-common"
version = "0.1.0"
edition = "2018"
[features]
tty = ["nix"]
audio = ["cpal"]
[dependencies]
moa = { path = "../../" }
nix = { version = "0.23", optional = true }
cpal = { version = "0.13", optional = true }