diff options
author | Delan Azabani <dazabani@igalia.com> | 2024-02-16 18:24:35 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-16 10:24:35 +0000 |
commit | aeb2503fdb277d9462cdd6901837fea11cd08bf9 (patch) | |
tree | 51e708918410719488750e109afa3b2502974ff6 /components/derive_common/lib.rs | |
parent | 1e503c3bc1ad85f05812e1b952880fbb92147c3d (diff) | |
download | servo-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.rs | 8 |
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; |