You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Recently I tried updating wsts and found that it failed to compile if not all workspace members used the same version of the crate. I fixed it by setting a common version for all workspace members in the top-level Cargo.toml file:
[workspace.dependencies]
wsts = "5.0"
And in the workspace member Cargo.toml files:
[dependencies]
wsts = {workspace = true}
There are several crates that are used in multiple workspace members, and using different versions of them could lead to build or runtime errors. Most (all?) of these crates should be moved to the [workspace.dependencies] section
The text was updated successfully, but these errors were encountered:
Recently I tried updating
wsts
and found that it failed to compile if not all workspace members used the same version of the crate. I fixed it by setting a common version for all workspace members in the top-levelCargo.toml
file:And in the workspace member
Cargo.toml
files:There are several crates that are used in multiple workspace members, and using different versions of them could lead to build or runtime errors. Most (all?) of these crates should be moved to the
[workspace.dependencies]
sectionThe text was updated successfully, but these errors were encountered: