Thomas Eizinger
Thomas Eizinger
I wonder if the crate renaming works on the level already? If yes, we could try and make an empty crate with just two features that we can add for...
Sure! Sorry for being very brief in the initial issue! > Does something analogous exist for Clippy? Yes. It is pretty easy to run `clippy` using GitHub actions. 1. Rust...
If we attach binaries to releases, we could also download them instead of building them from scratch every time, mitigating the need for caching.
> > If we attach binaries to releases, we could also download them instead of building them from scratch every time, mitigating the need for caching. > > Hmm, I'm...
For normal caching in Rust projects, I usually use https://github.com/Swatinem/rust-cache because it makes it effectively a one-liner which is pretty nice. I didn't actually realize that it might be worthwhile...
> The drivers (essentially wrappers around the rust compiler) are stored in `~/.dylint_drivers` by default. The only thing that distinguishes them is the version of the compiler they wrap. So...
> Essentially, when you build the library. A library gets a name like: > > ``` > libtry_io_result@nightly-2021-06-03-x86_64-unknown-linux-gnu.so > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ > ``` > > The reason is that the compiler...
I think the reason for why downloads are shared is that the source-code is always the same, regardless of the cargo/Rust version. I am not sure how common a shared...
Yes, that is the software I was referring to. > Do you know if the file format is documented anywhere? I have not found anything but I did not invest...
I am planning to also write the app in Kotlin so that part shouldn't be a problem. In a nutshell, the app should synchronize files between several phones. From what...