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:
parent
888c3e900a
commit
6f8130828f
1 changed files with 9 additions and 1 deletions
10
Cargo.toml
10
Cargo.toml
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue