18 个版本 (5 个稳定版本)
1.2.1 | 2024 年 3 月 4 日 |
---|---|
1.1.2 | 2024 年 2 月 14 日 |
1.0.0 | 2024 年 1 月 31 日 |
0.5.2 | 2024 年 1 月 28 日 |
0.3.7 | 2023 年 4 月 26 日 |
#229 in HTTP 服务器
每月 123 次下载
用于 8 crates
17KB
506 行
macros-rs
macros-rs 是一个简单、轻量级且实用的宏库。
入门指南
要开始,请查看 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
依赖关系
~0–11MB
~117K SLoC