mirror of
https://github.com/transistorfet/moa.git
synced 2024-11-05 06:07:28 +00:00
083f3607ba
I wanted to make this a bit more modular, so it's easier in theory to write external crates that can reuse bits, and selectively compile in bits, such as adding new systems or new cpu implementations
15 lines
249 B
TOML
15 lines
249 B
TOML
[package]
|
|
name = "moa_common"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
[features]
|
|
tty = ["nix"]
|
|
audio = ["cpal"]
|
|
|
|
[dependencies]
|
|
moa_core = { path = "../../core" }
|
|
nix = { version = "0.23", optional = true }
|
|
cpal = { version = "0.13", optional = true }
|
|
|