rsbind 0.6.0

Provide tools to bind rust trait with other language and export library artifact directly. Invoke rust functions just like you write it in native language.
Documentation
error_chain! {
    errors {
        FileError(msg: String) {
            description("file error"),
            display("file error: {}", msg),
        }
        ParseError(msg: String) {
            description("parse error"),
            display("parse error: {}", msg),
        }
        GenerateError(msg: String) {
            description("generate error"),
            display("parse error: {}", msg),
        }

        ZipError(msg: String) {
            description("zip error"),
            display("zip error: {}", msg),
        }
        CommandError(msg: String) {
            description("command error"),
            display("command error: {}", msg),
        }
    }

    foreign_links {
        Io(::std::io::Error);
        Toml(::toml::de::Error);
        FsExt(::fs_extra::error::Error);
        Fmt(::std::fmt::Error);
        Cbind(cbindgen::Error);
        NdkError(ndk_build::error::NdkError);
        NdkBuild(ndk_tool::error::Error);
    }
}