foreignc_template 0.1.1

Templating language for the foreignc crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/// # foreignc_template
/// Allow for generation of python apis using a simple representation of rust code

mod rust_types;
mod py_types;
mod py_gen;

mod error;
pub mod derived_input;

pub use error::*;
pub use rust_types::*;
pub use py_gen::*;