File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -76,13 +76,13 @@ define_proc_macros! {
76
76
} ) . collect( ) ;
77
77
78
78
let mut map = phf_codegen:: Map :: new( ) ;
79
- map. phf_path( "::cssparser::phf " ) ;
79
+ map. phf_path( "::cssparser::_internal__phf " ) ;
80
80
for & ( ref key, ref value) in & pairs {
81
81
map. entry( & * * key, & * * value) ;
82
82
}
83
83
84
84
let mut tokens = quote! {
85
- static MAP : :: cssparser:: phf :: Map <& ' static str , #value_type> =
85
+ static MAP : :: cssparser:: _internal__phf :: Map <& ' static str , #value_type> =
86
86
} ;
87
87
let mut initializer_bytes = Vec :: new( ) ;
88
88
map. build( & mut initializer_bytes) . unwrap( ) ;
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ fn parse_border_spacing(_context: &ParserContext, input: &mut Parser)
71
71
#[ macro_use] extern crate cssparser_macros;
72
72
#[ macro_use] extern crate matches;
73
73
#[ macro_use] extern crate procedural_masquerade;
74
- pub extern crate phf;
74
+ # [ doc ( hidden ) ] pub extern crate phf as _internal__phf ;
75
75
#[ cfg( test) ] extern crate encoding_rs;
76
76
#[ cfg( test) ] extern crate tempdir;
77
77
#[ cfg( test) ] extern crate rustc_serialize;
@@ -96,7 +96,7 @@ pub use unicode_range::UnicodeRange;
96
96
#[ doc( hidden) ] pub use macros:: _internal__to_lowercase;
97
97
98
98
// For macros when used in this crate. Unsure how $crate works with procedural-masquerade.
99
- mod cssparser { pub use phf ; }
99
+ mod cssparser { pub use _internal__phf ; }
100
100
101
101
#[ macro_use]
102
102
mod macros;
You can’t perform that action at this time.
0 commit comments