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 1/week @ 2024-01-15 1/week @ 2024-02-05 9/week @ 2024-02-12 12/week @ 2024-02-19 62/week @ 2024-02-26 19/week @ 2024-03-04 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

76 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
~33K SLoC