interoptopus_csharp 0.16.0-alpha.20

The C# backend for Interoptopus.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use interoptopus::inventory::RustInventory;
use interoptopus_csharp::RustLibrary;

#[test]
fn rust_library() {
    let inventory = RustInventory::new();
    let _ = RustLibrary::new(inventory).process().unwrap();
}

#[test]
fn rust_library_builder() {
    let inventory = RustInventory::new();
    let _ = RustLibrary::builder(inventory).build();
}