Workspace Foo
- Crate A depends on
Bar
- Crate B depends on
Bar
- Crate C depends on
Bar
- Crate D
Where Bar is an external dependency that I also maintain. When I want to update to a newer version of Bar, I would have to change 3 Cargo.toml files, which is a bit cumbersome. It would be nice if I could specify the dependency in one place. Is this possible?
Workspace Foo
BarBarBarWhere
Baris an external dependency that I also maintain. When I want to update to a newer version ofBar, I would have to change 3 Cargo.toml files, which is a bit cumbersome. It would be nice if I could specify the dependency in one place. Is this possible?