aboutsummaryrefslogtreecommitdiffstats
path: root/components/derive_common/lib.rs
diff options
context:
space:
mode:
authorDelan Azabani <dazabani@igalia.com>2024-02-16 18:24:35 +0800
committerGitHub <noreply@github.com>2024-02-16 10:24:35 +0000
commitaeb2503fdb277d9462cdd6901837fea11cd08bf9 (patch)
tree51e708918410719488750e109afa3b2502974ff6 /components/derive_common/lib.rs
parent1e503c3bc1ad85f05812e1b952880fbb92147c3d (diff)
downloadservo-aeb2503fdb277d9462cdd6901837fea11cd08bf9.tar.gz
servo-aeb2503fdb277d9462cdd6901837fea11cd08bf9.zip
style: Reduce diff with upstream derive_common and malloc_size_of (#31363)
Diffstat (limited to 'components/derive_common/lib.rs')
-rw-r--r--components/derive_common/lib.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/components/derive_common/lib.rs b/components/derive_common/lib.rs
index de1a5cf75b2..14415351449 100644
--- a/components/derive_common/lib.rs
+++ b/components/derive_common/lib.rs
@@ -2,4 +2,12 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
+extern crate darling;
+extern crate proc_macro2;
+#[macro_use]
+extern crate quote;
+#[macro_use]
+extern crate syn;
+extern crate synstructure;
+
pub mod cg;