Robert Važan
Robert Važan
Wouldn't Try-like API force callers to deal with the exception and thus defeat the purpose of noexception? At the moment, the handlers are supposed to know what to do with...
The `checked()` method does not exist yet :-) I was just asking for feedback about such a design. Returning `Optional` is what noexception is doing now. I think you just...
Added #367 for the local installation issue. I think the rest of Eclipse is using some Eclipse-specific API to find the right directory, isn't it? I have never done Eclipse...
You can set `RUSTUP_HOME`: https://rust-lang.github.io/rustup/environment-variables.html No idea where does `~/.cargo` directory come from. Is that also created by rustup? Corrosion preferences make it look like it's a separate download &...
BTW, even outside container, it's probably not such a great idea to install dependencies like this globally. Downloaded dependencies should be somewhere in private Corrosion directory.
Turns out this is a long-standing issue in upstream (https://github.com/rust-lang/rfcs/pull/1615). Apparently some people are against it with argument that goes like "why make things easier for 3rd party tools by...
There's no workaround. Flatpak does not allow path remapping. Sharing `~/.local/bin` defeats the purpose of containerization. I could install Rust in the right location inside the container, but I cannot...
Solving either one will unblock container use. Right now, if I want isolation, I can opt for either virtual machine with Eclipse+Corrosion or lightweight setup with Geany (or other editor)...
In order to get rustup to install everything in custom location, Corrosion has to: * set `RUSTUP_HOME` * set `CARGO_HOME` * pass in `--no-modify-path` parameter It also has to download...
Doesn't that create a hole in the container? I have my own Eclipse flatpak build that completely isolates the container from the host.