Merge pull request #2532 from dtolnay/macrouse

Delete unused serde_derive #[macro_use]
This commit is contained in:
David Tolnay
2023-07-25 18:55:14 -07:00
committed by GitHub
-2
View File
@@ -335,8 +335,6 @@ mod std_error;
// be annoying for crates that provide handwritten impls or data formats. They
// would need to disable default features and then explicitly re-enable std.
#[cfg(feature = "serde_derive")]
#[allow(unused_imports)]
#[macro_use]
extern crate serde_derive;
/// Derive macro available if serde is built with `features = ["derive"]`.