21 releases (4 breaking)

0.5.2 Apr 2, 2024
0.5.1 Mar 11, 2024
0.4.7 Mar 8, 2024
0.4.2 Dec 9, 2023
0.3.6 Oct 17, 2023

#1814 in Procedural macros

Download history 28/week @ 2024-01-22 120/week @ 2024-02-12 14/week @ 2024-02-19 23/week @ 2024-02-26 420/week @ 2024-03-04 260/week @ 2024-03-11 74/week @ 2024-03-18 303/week @ 2024-04-01

765 downloads per month
Used in 4 crates (2 directly)

MIT license

9KB

Rubedo macros

This crate provides proc macros for the main rubedo crate. It is not intended to be used directly, but rather to be used with the Rubedo crate, which re-exports its functionality.

It exists because it is not currently possible to have proc macros in the same crate as the code that uses them. This is because the compiler needs to compile the proc macros before it can use them, but it can't compile them until it has compiled the code that uses them. This is a chicken-and-egg problem, and the solution is to put the proc macros in a separate crate.

Features

Macros

The macros are provided to provide syntactic sugar for common operations.

  • ip! Builds an IP address from a range of input types.

lib.rs:

This library provides macros that add syntactic sugar for common operations.

Specifically, the macros implemented in this crate are proc macros, which have to live separately from other code. They are part of the rubedo ecosystem.

Dependencies

~86KB