mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-23 00:01:34 +11:00
Switch to cargo workspaces for every crate we support
This commit is contained in:
parent
0dab252379
commit
52ddd97a2e
44
Cargo.toml
Normal file
44
Cargo.toml
Normal file
|
@ -0,0 +1,44 @@
|
|||
[workspace]
|
||||
|
||||
resolver = "2"
|
||||
|
||||
# unfortunately we can't include 'agb' or anything which compiles to non-native code
|
||||
# in the workspace here, and they need to be tracked separately.
|
||||
members = [
|
||||
# "agb"
|
||||
"agb-addr2line",
|
||||
"agb-fixnum",
|
||||
"agb-gbafix",
|
||||
"agb-hashmap",
|
||||
"agb-image-converter",
|
||||
"agb-macros",
|
||||
"agb-sound-converter",
|
||||
|
||||
"tracker/agb-midi",
|
||||
"tracker/agb-midi-core",
|
||||
"tracker/agb-tracker-interop",
|
||||
# "tracker/agb-tracker",
|
||||
"tracker/agb-xm",
|
||||
"tracker/agb-xm-core",
|
||||
|
||||
"tools",
|
||||
|
||||
"emulator/mgba",
|
||||
"emulator/mgba-sys",
|
||||
"emulator/test-runner",
|
||||
]
|
||||
|
||||
exclude = [
|
||||
"agb",
|
||||
|
||||
"tracker/agb-tracker",
|
||||
|
||||
"examples/amplitude",
|
||||
"examples/combo",
|
||||
"examples/hyperspace-roll",
|
||||
"examples/the-dungeon-puzzlers-lament",
|
||||
"examples/the-hat-chooses-the-wizard",
|
||||
"examples/the-purple-night",
|
||||
|
||||
"book/games/pong",
|
||||
]
|
Loading…
Reference in a new issue