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

#229 in HTTP server

Download history 100/week @ 2024-03-11 15/week @ 2024-03-18 88/week @ 2024-04-01 9/week @ 2024-04-22 49/week @ 2024-05-20 45/week @ 2024-06-03 19/week @ 2024-06-10 20/week @ 2024-06-17 39/week @ 2024-06-24

123 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
~117K SLoC