alef 0.22.25

Opinionated polyglot binding generator for Rust libraries
Documentation
1
2
3
4
5
6
7
//! `.gitignore` for the AAR module — covers Gradle build outputs, IDE
//! caches, and stray Android-specific files.

/// Emit `.gitignore`.
pub fn emit() -> String {
    "# Generated by alef. Do not edit by hand.\nbuild/\n.gradle/\n.idea/\n*.iml\nlocal.properties\n".to_string()
}