mirror of
https://github.com/servo/servo.git
synced 2025-07-24 07:40:27 +01:00
Split Au type into separate crate, with minimal dependencies.
This commit is contained in:
parent
fb6d0946cb
commit
339a3f869b
72 changed files with 376 additions and 235 deletions
|
@ -10,6 +10,7 @@
|
|||
#![plugin(plugins, serde_macros)]
|
||||
#![deny(missing_docs)]
|
||||
|
||||
extern crate app_units;
|
||||
extern crate devtools_traits;
|
||||
extern crate euclid;
|
||||
extern crate ipc_channel;
|
||||
|
@ -21,6 +22,7 @@ extern crate serde;
|
|||
extern crate url;
|
||||
extern crate util;
|
||||
|
||||
use app_units::Au;
|
||||
use devtools_traits::ScriptToDevtoolsControlMsg;
|
||||
use euclid::point::Point2D;
|
||||
use euclid::rect::Rect;
|
||||
|
@ -38,7 +40,6 @@ use profile_traits::{mem, time};
|
|||
use std::any::Any;
|
||||
use std::sync::mpsc::{Receiver, Sender};
|
||||
use url::Url;
|
||||
use util::geometry::Au;
|
||||
|
||||
/// The address of a node. Layout sends these back. They must be validated via
|
||||
/// `from_untrusted_node_address` before they can be used, because we do not trust layout.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue