dotrust/lib.rs
1//! The ultimate goal of this project is to provide fluent interaction between Rust and the .NET
2//! ecosystem. Currently, the focus is mostly upon providing a clean API to host the Common Language
3//! Runtime (CLR) as intended.
4
5#[cfg(windows)]
6extern crate winapi;
7
8#[cfg(windows)]
9#[macro_use]
10extern crate com_rs as com;
11
12pub mod host;