mirror of
https://github.com/servo/servo.git
synced 2025-07-23 07:13:52 +01:00
Remove usage of the mod_path compiler plugin.
https://github.com/rust-lang/rust/pull/20179 makes its use case much weaker.
This commit is contained in:
parent
1060cfde68
commit
53c32cdc78
6 changed files with 4 additions and 23 deletions
|
@ -11,7 +11,6 @@
|
|||
#![feature(rustc_private)]
|
||||
|
||||
#![plugin(string_cache_plugin)]
|
||||
#![plugin(mod_path)]
|
||||
|
||||
#[macro_use] extern crate log;
|
||||
#[macro_use] extern crate bitflags;
|
||||
|
@ -44,7 +43,10 @@ pub mod selector_matching;
|
|||
#[macro_use] pub mod values;
|
||||
|
||||
// Generated from the properties.mako.rs template by build.rs
|
||||
mod_path! properties (concat!(env!("OUT_DIR"), "/properties.rs"));
|
||||
#[macro_use]
|
||||
pub mod properties {
|
||||
include!(concat!(env!("OUT_DIR"), "/properties.rs"));
|
||||
}
|
||||
|
||||
pub mod node;
|
||||
pub mod media_queries;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue