This is really neat, I always wanted to see other languages target .NET much like the JVM was a popular platform to target. Considering .NET is fully MIT licensed I am surprised we dont see more languages that target .NET
Rust panics under the hood, and implementing them in .NET
11–20 of 83 posts
Re: Rust panics under the hood, and implementing them in .NET
#12Earlier quoted context omitted.
.net considers the rust code "unsafe" so you can do unmanaged, non-GC stuff in the Rust portion of the code.
You can already do that from .NET itself. My question here is more along the lines of: "what Rust libs are out there that I might be interested in from .NET?"
Re: Rust panics under the hood, and implementing them in .NET
#13Earlier quoted context omitted.
.net considers the rust code "unsafe" so you can do unmanaged, non-GC stuff in the Rust portion of the code.
In theory, the compiler could do the same as C++/CLI, and output safe Assemblies when specific code patterns aren't used.
Re: Rust panics under the hood, and implementing them in .NET
#14This is really neat, I always wanted to see other languages target .NET much like the JVM was a popular platform to target. Considering .NET is fully MIT licensed I am surprised we dont see more languages that target .NET
Re: Rust panics under the hood, and implementing them in .NET
#15Re: Rust panics under the hood, and implementing them in .NET
#16Re: Rust panics under the hood, and implementing them in .NET
#17From the repo[0]: > The project aims to provide a way to easily use Rust libraries in .NET. It comes with a Rust/.NET interop layer, which allows you to easily interact with .NET code from Rust Are there some standout Rust libraries out there? Very curious about the motivation and use cases. [0] https://github.com/FractalFir/rustc_codegen_clr
.net considers the rust code "unsafe" so you can do unmanaged, non-GC stuff in the Rust portion of the code.
For all intents and purposes, the non-unsafe subset of Rust is a safe language, and the distinction pretty much does not exist at the IL level.
Re: Rust panics under the hood, and implementing them in .NET
#18This is really neat, I always wanted to see other languages target .NET much like the JVM was a popular platform to target. Considering .NET is fully MIT licensed I am surprised we dont see more languages that target .NET
1: https://dotlisp.sourceforge.net/dotlisp.htm
Re: Rust panics under the hood, and implementing them in .NET
#19This is really neat, I always wanted to see other languages target .NET much like the JVM was a popular platform to target. Considering .NET is fully MIT licensed I am surprised we dont see more languages that target .NET
That is why CLR used to mean Common Language Runtime, and there were so many languages on the launch event and .NET SDK bundled on computer magazines back in 2001. Then the Windows only focus (for a while there was Rotor), and Microsoft being Microsoft, all that interest faded away and people focused on the JVM, even though MSIL was designed for all kind of languages (well dynamic came later with Iron languages and D…
Definitely! VB.Net is basically "dead" and F# will never really reach critical mass.
Re: Rust panics under the hood, and implementing them in .NET
#20This is really neat, I always wanted to see other languages target .NET much like the JVM was a popular platform to target. Considering .NET is fully MIT licensed I am surprised we dont see more languages that target .NET