Rust panics under the hood, and implementing them in .NET
fractalfir.github.io
Rust panics under the hood, and implementing them in .NET
1–10 of 83 posts
Re: Rust panics under the hood, and implementing them in .NET
#2 > 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.Re: Rust panics under the hood, and implementing them in .NET
#3Re: Rust panics under the hood, and implementing them in .NET
#4Really looking forward to this one.
Re: Rust panics under the hood, and implementing them in .NET
#5From 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
Re: Rust panics under the hood, and implementing them in .NET
#6From 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.
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
#7Re: Rust panics under the hood, and implementing them in .NET
#8This 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
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 DLR), including C and C++.
Nowadays CLR almost feels to have changed into C# Language Runtime, given the C# centric decision on modern .NET design.
Re: Rust panics under the hood, and implementing them in .NET
#9From 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.
Re: Rust panics under the hood, and implementing them in .NET
#10This 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…