android-rust-cli 0.3.2

A CLI tool for generating Android Rust JNI templates in a single command
1
2
3
4
5
6
7
8
9
mod context;
mod metadata;
mod renderer;
mod source;

pub use context::TemplateContext;
pub use metadata::TemplateMetadata;
pub use renderer::{render_embedded_dir, render_fs_dir};
pub use source::{TEMPLATE_DIR, TemplateSource, list_templates_embedded, list_templates_fs};