4 releases (2 breaking)
0.3.0 | Jun 19, 2020 |
---|---|
0.2.1 | Nov 9, 2019 |
0.2.0 | Nov 9, 2019 |
0.1.0 | Oct 5, 2019 |
#317 in Procedural macros
269,665 downloads per month
Used in 56 crates
(7 directly)
3KB
NoOp proc macro
NoOp mocks for proc_macros
that you might want to make optional.
#[cfg(feature = "serde")]
pub(crate) use serde_derive::{Serialize, Deserialize};
#[cfg(not(feature = "serde")]
pub(crate) use noop_proc_macro::{Serialize, Deserialize};