mirror of
https://github.com/servo/servo.git
synced 2025-07-24 15:50:21 +01:00
Remove fnv & smallvec crate reexports from util
The util component specified fnv and smallvec as dependencies and publicly reexported both of them. Several other components utilized these reexports, presumably because fnv and smallvec used to live in the tree so reexporting made the transition easier. These indirect dependencies through the util component are unnecessary. This commit removes the fnv & smallvec crate reexports in the util component. It exchange, it adds fnv & smallvec as dependencies to non-util components wherever needed. Finally, it removes the fnv dependency from util as it is not utilized anywhere in the util component.
This commit is contained in:
parent
44a4b7886d
commit
4f47b41fa7
29 changed files with 58 additions and 30 deletions
|
@ -28,6 +28,7 @@ extern crate cssparser;
|
|||
extern crate geom;
|
||||
extern crate html5ever;
|
||||
extern crate encoding;
|
||||
extern crate fnv;
|
||||
extern crate hyper;
|
||||
extern crate js;
|
||||
extern crate libc;
|
||||
|
@ -42,6 +43,7 @@ extern crate canvas_traits;
|
|||
extern crate profile_traits;
|
||||
extern crate script_traits;
|
||||
extern crate selectors;
|
||||
extern crate smallvec;
|
||||
extern crate util;
|
||||
extern crate websocket;
|
||||
#[macro_use]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue