mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +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
|
@ -35,7 +35,9 @@ path = "../plugins"
|
|||
path = "../util"
|
||||
|
||||
[dependencies]
|
||||
cssparser = {version = "0.5.2", features = ["serde-serialization"]}
|
||||
cssparser = {version = "0.5.2", features = ["heap_size", "serde-serialization"]}
|
||||
euclid = {version = "0.6.1", features = ["plugins"]}
|
||||
heapsize = "0.2.5"
|
||||
heapsize_plugin = "0.1.2"
|
||||
serde_macros = "0.6"
|
||||
|
||||
|
|
|
@ -7,13 +7,14 @@
|
|||
#![feature(custom_derive)]
|
||||
#![feature(nonzero)]
|
||||
#![feature(plugin)]
|
||||
#![plugin(serde_macros, plugins)]
|
||||
#![plugin(heapsize_plugin, plugins, serde_macros)]
|
||||
|
||||
extern crate azure;
|
||||
extern crate core;
|
||||
extern crate cssparser;
|
||||
extern crate euclid;
|
||||
extern crate gfx_traits;
|
||||
extern crate heapsize;
|
||||
extern crate ipc_channel;
|
||||
extern crate layers;
|
||||
extern crate offscreen_gl_context;
|
||||
|
@ -40,7 +41,6 @@ use std::default::Default;
|
|||
use std::fmt;
|
||||
use std::str::FromStr;
|
||||
use std::sync::mpsc::Sender;
|
||||
use util::mem::HeapSizeOf;
|
||||
|
||||
#[derive(Clone, Deserialize, Serialize)]
|
||||
pub enum FillRule {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue