aboutsummaryrefslogtreecommitdiffstats
path: root/ports
diff options
context:
space:
mode:
authorLars Bergstrom <lars@lars.com>2016-12-19 08:29:06 -0600
committerLars Bergstrom <lars@lars.com>2016-12-19 08:29:06 -0600
commitcba3881a12cfd9a8c2361838f44a3de6a919763f (patch)
tree34047283b9f34d9f2c1b2d59a6778b62588f37e0 /ports
parent077a54de19ad6336cc6fae5fb4d9897535f67c2b (diff)
downloadservo-cba3881a12cfd9a8c2361838f44a3de6a919763f.tar.gz
servo-cba3881a12cfd9a8c2361838f44a3de6a919763f.zip
Revert "Update Rust to 1.15.0-nightly (8f02c429a 2016-12-15)."
This reverts commit 5618e797683e7bfc400e8b1879d89f64bfb577fa.
Diffstat (limited to 'ports')
-rw-r--r--ports/cef/lib.rs2
-rw-r--r--ports/cef/string_list.rs2
-rw-r--r--ports/cef/window.rs2
-rw-r--r--ports/cef/wrappers.rs2
4 files changed, 4 insertions, 4 deletions
diff --git a/ports/cef/lib.rs b/ports/cef/lib.rs
index b4d09379055..e270267b905 100644
--- a/ports/cef/lib.rs
+++ b/ports/cef/lib.rs
@@ -22,11 +22,11 @@ extern crate euclid;
extern crate gfx_traits;
extern crate gleam;
extern crate glutin_app;
+extern crate rustc_unicode;
extern crate script_traits;
extern crate servo_config;
extern crate servo_geometry;
extern crate servo_url;
-extern crate std_unicode;
extern crate style_traits;
extern crate net_traits;
diff --git a/ports/cef/string_list.rs b/ports/cef/string_list.rs
index 5c0b94d96bc..90ada69267a 100644
--- a/ports/cef/string_list.rs
+++ b/ports/cef/string_list.rs
@@ -7,7 +7,7 @@ use std::slice;
use string::cef_string_utf16_set;
use types::{cef_string_list_t,cef_string_t};
-use std_unicode::str::Utf16Encoder;
+use rustc_unicode::str::Utf16Encoder;
//cef_string_list
diff --git a/ports/cef/window.rs b/ports/cef/window.rs
index 7ef1c99c2de..f84c0b90d1f 100644
--- a/ports/cef/window.rs
+++ b/ports/cef/window.rs
@@ -14,7 +14,7 @@ use eutil::Downcast;
use interfaces::CefApp;
use interfaces::CefBrowser;
use render_handler::CefRenderHandlerExtensions;
-use std_unicode::str::Utf16Encoder;
+use rustc_unicode::str::Utf16Encoder;
use types::{cef_cursor_handle_t, cef_cursor_type_t, cef_rect_t};
use wrappers::CefWrap;
diff --git a/ports/cef/wrappers.rs b/ports/cef/wrappers.rs
index c1a887ac28c..fdb2bb96063 100644
--- a/ports/cef/wrappers.rs
+++ b/ports/cef/wrappers.rs
@@ -8,7 +8,7 @@ use interfaces::{cef_dialog_handler_t, cef_focus_handler_t};
use interfaces::{cef_download_handler_t, cef_drag_handler_t, cef_context_menu_handler_t};
use interfaces::{cef_geolocation_handler_t, cef_jsdialog_handler_t, cef_keyboard_handler_t};
use interfaces::{cef_load_handler_t, cef_request_handler_t};
-use std_unicode::str::Utf16Encoder;
+use rustc_unicode::str::Utf16Encoder;
use types::{cef_base_t, cef_browser_settings_t, CefBrowserSettings, cef_color_model_t};
use types::{cef_context_menu_edit_state_flags_t};
use types::{cef_context_menu_media_state_flags_t};