Can we get GIMP to stop associating .rs files with itself on Windows? Looks like .rs is a nonstandard extension for the long-dead 1989 Sun Raster format (en.wikipedia.org/wiki/Sun_Raster) used by a handful of old research papers and literally nobody is helped by this.
Conversation
Replying to
intellij on linux will try and treat .rs as something android-related if the rust plugin isn't installed. It's weird.
1
1
It's was for RenderScript:
developer.android.com/guide/topics/r
AOSP switched to .rscript since it's heavily adopting Rust and the build system determines how to build files based on extension:
android.googlesource.com/platform/build
I don't know if they'll switch the extension for external developers.
1
2
AOSP builds Rust and handles bindgen with AOSP's declarative Android.bp build system (soong) rather than cargo.
Same approach as how external C and C++ projects are integrated. Their build systems get converted to Android.bp so everything has the same incremental build system.

