wrapped_mono 0.4.0

`wrapped_mono` is a safe, lightweight wrapper around the mono library. It allows embedding of the mono runtime inside a rust project. Inside this embedded runtime code written in languages supporting the .NET framework, such as C# and F#, can be run. This allows usage of libraries written in those languages, and using them as a scripting language. The mono runtime is used by many game engines, and this wrapper allows using it with projects written in Rust too.
Documentation
1
2
3
4
5
6
7
8
#include <mono-2.0/mono/jit/jit.h>
#include <mono-2.0/mono/metadata/mono-config.h>
#include <mono-2.0/mono/metadata/assembly.h>
#include <mono-2.0/mono/metadata/exception.h>
#include <mono-2.0/mono/metadata/mono-gc.h>
#include <mono-2.0/mono/metadata/class.h>
#include <mono-2.0/mono/metadata/profiler.h>
#include <mono-2.0/mono/metadata/mono-debug.h>