mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Say farewell to in-tree HeapSizeOf
This commit is contained in:
parent
9932a5cf82
commit
cb5cd8d881
80 changed files with 245 additions and 733 deletions
|
@ -43,8 +43,10 @@ git = "https://github.com/servo/ipc-channel"
|
|||
[dependencies]
|
||||
app_units = {version = "0.2", features = ["plugins"]}
|
||||
euclid = {version = "0.6.1", features = ["plugins"]}
|
||||
heapsize = "0.2.5"
|
||||
heapsize_plugin = "0.1.2"
|
||||
libc = "0.2"
|
||||
serde = "0.6"
|
||||
serde_macros = "0.6"
|
||||
time = "0.1.12"
|
||||
url = "0.5.4"
|
||||
url = {version = "0.5.4", features = ["heap_size"]}
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
//! to depend on script.
|
||||
|
||||
#![feature(custom_derive, plugin)]
|
||||
#![plugin(plugins, serde_macros)]
|
||||
#![plugin(heapsize_plugin, plugins, serde_macros)]
|
||||
#![deny(missing_docs)]
|
||||
|
||||
extern crate app_units;
|
||||
|
@ -15,6 +15,7 @@ extern crate canvas_traits;
|
|||
extern crate devtools_traits;
|
||||
extern crate euclid;
|
||||
extern crate gfx_traits;
|
||||
extern crate heapsize;
|
||||
extern crate ipc_channel;
|
||||
extern crate libc;
|
||||
extern crate msg;
|
||||
|
@ -50,7 +51,6 @@ use profile_traits::mem;
|
|||
use std::any::Any;
|
||||
use url::Url;
|
||||
use util::ipc::OptionalOpaqueIpcSender;
|
||||
use util::mem::HeapSizeOf;
|
||||
|
||||
pub use script_msg::{LayoutMsg, ScriptMsg};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue