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

Download history 41/week @ 2024-03-11 31/week @ 2024-03-18 15/week @ 2024-03-25 63/week @ 2024-04-01 16/week @ 2024-04-08 14/week @ 2024-04-15 22/week @ 2024-04-22 19/week @ 2024-04-29 22/week @ 2024-05-06 23/week @ 2024-05-13 23/week @ 2024-05-20 18/week @ 2024-05-27 16/week @ 2024-06-03 16/week @ 2024-06-10 22/week @ 2024-06-17 17/week @ 2024-06-24

73 downloads per month
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
~35K SLoC