aboutsummaryrefslogtreecommitdiffstats
path: root/components/style_derive/lib.rs
diff options
context:
space:
mode:
authorMartin Robinson <mrobinson@igalia.com>2024-02-22 05:40:37 +0100
committerGitHub <noreply@github.com>2024-02-22 04:40:37 +0000
commit1c2de6dd1d31304187dd9b2e5767681fe16cd68f (patch)
treed5ae0e6d8fd550b4748b07ea375d9d683e65ae3a /components/style_derive/lib.rs
parentd4212dca0bd5a778aca859778fd2c82b533e1844 (diff)
downloadservo-1c2de6dd1d31304187dd9b2e5767681fe16cd68f.tar.gz
servo-1c2de6dd1d31304187dd9b2e5767681fe16cd68f.zip
Revert changes to servo_arc, style_derive, and style_traits (#31387)
This reverts the Rust edition updates to these three traits as well as incorporates https://phabricator.services.mozilla.com/D117887. The purpose of this change is to reduce the diff with upstream stylo. Finally, formatting is disabled for these crates as well.
Diffstat (limited to 'components/style_derive/lib.rs')
-rw-r--r--components/style_derive/lib.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/components/style_derive/lib.rs b/components/style_derive/lib.rs
index a2c39f84308..079db00c5a3 100644
--- a/components/style_derive/lib.rs
+++ b/components/style_derive/lib.rs
@@ -4,6 +4,17 @@
#![recursion_limit = "128"]
+#[macro_use]
+extern crate darling;
+extern crate derive_common;
+extern crate proc_macro;
+extern crate proc_macro2;
+#[macro_use]
+extern crate quote;
+#[macro_use]
+extern crate syn;
+extern crate synstructure;
+
use proc_macro::TokenStream;
mod animate;