mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 13:48:23 +02:00
Depends on D17187 Differential Revision: https://phabricator.services.mozilla.com/D17188 --HG-- rename : servo/components/style_derive/Cargo.toml => servo/components/derive_common/Cargo.toml rename : servo/components/style_derive/cg.rs => servo/components/derive_common/cg.rs extra : moz-landing-system : lando
14 lines
384 B
Rust
14 lines
384 B
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* 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_macro;
|
|
extern crate proc_macro2;
|
|
#[macro_use]
|
|
extern crate quote;
|
|
#[macro_use]
|
|
extern crate syn;
|
|
extern crate synstructure;
|
|
|
|
pub mod cg;
|