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 2/week @ 2024-11-13 2/week @ 2024-11-20 6/week @ 2024-11-27 16/week @ 2024-12-04 24/week @ 2024-12-11 8/week @ 2024-12-18 16/week @ 2025-01-01 3/week @ 2025-01-08 3/week @ 2025-01-15 7/week @ 2025-01-29 14/week @ 2025-02-05 18/week @ 2025-02-12 9/week @ 2025-02-19 14/week @ 2025-02-26

57 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
~38K SLoC