mirror of
https://github.com/servo/servo.git
synced 2025-08-15 10:25:32 +01:00
Switch to crates.io for atomic_refcell.
This commit is contained in:
parent
57b2c2609e
commit
b9d99390ad
21 changed files with 30 additions and 481 deletions
|
@ -14,6 +14,7 @@ bindgen = ["style/bindgen"]
|
|||
|
||||
[dependencies]
|
||||
app_units = "0.3"
|
||||
atomic_refcell = "0.1"
|
||||
cssparser = {version = "0.7"}
|
||||
env_logger = "0.3"
|
||||
euclid = "0.10.1"
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
use app_units::Au;
|
||||
use atomic_refcell::AtomicRefMut;
|
||||
use cssparser::Parser;
|
||||
use cssparser::ToCss as ParserToCss;
|
||||
use env_logger;
|
||||
|
@ -16,7 +17,6 @@ use std::mem::transmute;
|
|||
use std::ptr;
|
||||
use std::sync::{Arc, Mutex};
|
||||
use style::arc_ptr_eq;
|
||||
use style::atomic_refcell::AtomicRefMut;
|
||||
use style::context::{QuirksMode, ReflowGoal, SharedStyleContext, StyleContext};
|
||||
use style::context::{ThreadLocalStyleContext, ThreadLocalStyleContextCreationInfo};
|
||||
use style::data::{ElementData, ElementStyles, RestyleData};
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
|
||||
#[macro_use]extern crate style;
|
||||
extern crate app_units;
|
||||
extern crate atomic_refcell;
|
||||
extern crate cssparser;
|
||||
extern crate env_logger;
|
||||
extern crate euclid;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue