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 #cargo-xbuild

Download history 49/week @ 2023-10-19 54/week @ 2023-10-26 38/week @ 2023-11-02 41/week @ 2023-11-09 47/week @ 2023-11-16 49/week @ 2023-11-23 42/week @ 2023-11-30 31/week @ 2023-12-07 48/week @ 2023-12-14 46/week @ 2023-12-21 23/week @ 2023-12-28 35/week @ 2024-01-04 42/week @ 2024-01-11 34/week @ 2024-01-18 25/week @ 2024-01-25 18/week @ 2024-02-01

125 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
~32K SLoC