A few days ago, rustup
was added as a dependency: https://aur.archlinux.org/cgit/aur.git/commit/?h=vscodium&id=492c1cbd08d7ee5488b23b1b026734f87ae65865
But that package conflicts with rust
(https://archlinux.org/packages/extra/x86_64/rustup/), since it provides rust
.
One solution would be to remove rust
.
yay -R rust
Updating directly then might not work yet, since your rustc
version might be too old:
error: package clap v4.5.4 cannot be built because it requires rustc 1.74 or newer, while the currently active rustc version is 1.69.0
Either upgrade to rustc 1.74 or newer, or use
cargo update -p clap@4.5.4 --precise ver
where ver is the latest version of clap supporting rustc 1.69.0
++++ error_function build
To update it, install rustup
explicitly first and then install latest stable:
yay rustup
rustup install stable
Now you can update vscodium
. Not sure I'm happy with this change, since it seems like a more complicated dependency.
Pinned Comments