Updated cargo with workspaces

This commit is contained in:
transistor 2021-10-20 19:54:13 -07:00
parent 8d39d84545
commit bff90e8f9f
1 changed files with 8 additions and 2 deletions

View File

@ -3,7 +3,13 @@ name = "moa"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [".", "frontends/moa-console", "frontends/moa-piston"]
default-members = ["frontends/moa-console"]
[features]
tty = ["nix"]
[dependencies]
nix = "0.23"
nix = { version = "0.23", optional = true }