mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Upgrade rust to f93ab64d4a1a7ee91759a1594ab2a426b6cc657e/rustc-1.5.0-dev.
This commit is contained in:
parent
8f1469eb08
commit
3c969b346a
40 changed files with 253 additions and 253 deletions
|
@ -18,7 +18,7 @@ libc = "0.1"
|
|||
log = "0.3"
|
||||
rand = "0.3"
|
||||
rustc-serialize = "0.3"
|
||||
serde = "0.5"
|
||||
serde = "0.6"
|
||||
serde_macros = "0.5"
|
||||
smallvec = "0.1"
|
||||
string_cache = "0.1"
|
||||
|
|
|
@ -2,8 +2,7 @@
|
|||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
#![feature(arc_weak)]
|
||||
#![feature(box_raw)]
|
||||
#![feature(alloc)]
|
||||
#![feature(box_syntax)]
|
||||
|
||||
// For simd (currently x86_64/aarch64)
|
||||
|
@ -26,6 +25,7 @@
|
|||
extern crate log;
|
||||
extern crate serde;
|
||||
|
||||
extern crate alloc;
|
||||
extern crate azure;
|
||||
#[macro_use] extern crate bitflags;
|
||||
extern crate fnv;
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
use alloc::heap;
|
||||
use freetype::freetype::FTErrorMethods;
|
||||
use freetype::freetype::FT_Add_Default_Modules;
|
||||
use freetype::freetype::FT_Done_Library;
|
||||
|
@ -12,7 +13,6 @@ use freetype::freetype::struct_FT_MemoryRec_;
|
|||
use libc::{c_void, c_long};
|
||||
use std::ptr;
|
||||
use std::rc::Rc;
|
||||
use std::rt::heap;
|
||||
use util::mem::{HeapSizeOf, heap_size_of};
|
||||
|
||||
// We pass a |User| struct -- via an opaque |void*| -- to FreeType each time a new instance is
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue