chore: Name workspace members explicitly

This makes switching between branches that introduce new crates easier.
During switching, Git sometimes leaves directories in the tree, e.g.
submodules, and those then produce issues when trying to compile in a
branch that doesn't use that workspace member.
This commit is contained in:
Lucas Schwiderski 2023-03-14 20:27:36 +01:00
parent 888c3e900a
commit 6f8130828f
Signed by: lucas
GPG key ID: AA12679AAA6DF4D8

View file

@ -1,6 +1,14 @@
[workspace]
resolver = "2"
members = ["crates/*", "lib/*"]
members = [
"crates/dtmt",
"crates/dtmm",
"lib/dtmt-shared",
"lib/oodle-sys",
"lib/sdk",
"lib/serde_sjson",
"lib/steamlocate-rs",
]
[profile.release]
strip = "debuginfo"