0.3.3 - 2016-05-03
- arbitrarily nested
const
pointers are handled correctly - function declarations can now contain patterns
- such as
fn foo(mut a: ...
- such as
- zero argument functions are now written out as
func(void)
0.3.2 - 2016-03-02
- rusty-cheddar now correctly converts types in
std::os::raw
0.3.1 - 2016-01-20
- the api can now be placed in any arbitrary module
- the include guard is sanitised to avoid illegal characters in a macro definition
0.3.0 - 2016-01-10
- the whole fucking thing!
- no longer requires nightly
- works as a library which leverages syntex
- see the README for the new interface
- the
cheddar
executable which acts as a thin wrapper around the library functionality
0.2.0 - 2015-12-28
- support for function pointers
- support for opaque structs
#[repr(C)] pub struct Foo(Vec<T>);
typedef struct Foo Foo;
- the ability to hide your C API behind a module
- can only be one module deep at this point in time
- plugin arguments
- you must now use key value pairs to specify
file
anddir
- old:
#![plugin(cheddar(path,to,file))]
- new:
#![plugin(cheddar(dir = "path/to", file = "file.h"))]
- you must now use key value pairs to specify