5 releases (3 breaking)

0.4.0 Mar 30, 2020
0.3.0 Jun 2, 2019
0.2.1 Apr 20, 2019
0.1.1 Feb 10, 2019
0.1.0 Feb 7, 2019

#7 in #ndless


Used in 5 crates (via ndless)

MIT/Apache

7KB
65 lines

ndless-macros

Ndless procedural macros for common tasks, such as marking the main function of the program. It will automatically store the command-line arguments, and mark the function as the entrance to the program.

#![no_std]
#![no_main]

extern crate ndless_handler;

use ndless::prelude::*;

#[entry]
fn main() {
	// Code
}

Dependencies

~1.5MB
~37K SLoC