#lua #annotations #lsp #generate #type #field #testing

alua

A Rust library for generating lua lsp annotations from Rust types

8 releases

new 0.2.0 Oct 28, 2024
0.1.6 Oct 28, 2024
0.1.4 Jun 10, 2024
0.1.3 May 8, 2024
0.1.2 Apr 24, 2024

#141 in Text editors

Download history 1/week @ 2024-07-22 12/week @ 2024-09-23 5/week @ 2024-09-30 7/week @ 2024-10-14 428/week @ 2024-10-28

436 downloads per month

MIT license

9KB
135 lines

alua

A Rust library for generating luals annotations from Rust types.

Example

use alua::*;

#[derive(ClassAnnotation)]
#[alua(fields = [
    "method fun(self: Example, message: string) - Send a message",
])]
struct Example {
    /// test
    #[allow(unused)]
    field: u32,
}

fn main() {
    print!("{}", Example::class_annotation());
}

This produces the following output:

--- @class Example
--- @field field integer - test
--- @field method fun(self: Example, message: string) - Send a message

Dependencies

~0.6–1MB
~24K SLoC