sway icon indicating copy to clipboard operation
sway copied to clipboard

Update all deps to be the latest version across the whole repo

Open JoshuaBatty opened this issue 1 year ago • 0 comments

Also, it might be worth us migrating to defining dependencies used across multiple workspace members in a [workspace.dependencies] section. Eg

[workspace.dependencies]
clap = "4.5"
dashmap = "6.0"

Then in the member projections Cargo.toml we can bring them in like

[dependencies]
clap = { workspace = true }
dashmap = { workspace = true }

JoshuaBatty avatar Jun 24 '24 23:06 JoshuaBatty