18 releases (5 stable)

1.2.1 Mar 4, 2024
1.1.2 Feb 14, 2024
1.0.0 Jan 31, 2024
0.5.2 Jan 28, 2024
0.3.7 Apr 26, 2023

#205 in HTTP server

Download history 1/week @ 2024-01-11 6/week @ 2024-01-18 9/week @ 2024-01-25 91/week @ 2024-02-08 53/week @ 2024-02-15 64/week @ 2024-02-22 236/week @ 2024-02-29 111/week @ 2024-03-07 44/week @ 2024-03-14 9/week @ 2024-03-21 58/week @ 2024-03-28 30/week @ 2024-04-04 2/week @ 2024-04-18 7/week @ 2024-04-25

70 downloads per month
Used in 8 crates

MIT license

17KB
506 lines

macros-rs

macros-rs is a simple, lightweight, and useful library for miscellaneous macros.

Getting Started

To get started check out the docs on docs.rs!

// main.rs
use macros_rs::{exp::ternary, fmt::fmtstr};

fn main() {
  let value = true;
  let hello = "hello";

  println!("{:?} world", ternary!(value, fmtstr!("{hello}"), ""));
}
$ cargo run
Compiling project (/crates)
Finished build [unoptimized + debuginfo] target(s)

"hello" world

Dependencies

~0–11MB
~123K SLoC