Skip to content
This repository was archived by the owner on Jul 10, 2023. It is now read-only.

Commit ef89918

Browse files
committed
Merge pull request #111 from servo/rustup
Rust upgrade
2 parents e29c5cd + c72c905 commit ef89918

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ extern crate libc;
1919
#[phase(plugin, link)]
2020
extern crate log;
2121
extern crate opengles;
22-
extern crate std;
2322
extern crate serialize;
2423

2524
#[cfg(target_os="macos")]

src/platform/linux/surface.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ use opengles::gl2;
2828
use std::c_str::CString;
2929
use std::mem;
3030
use std::ptr;
31-
use xlib::xlib::{Display, Pixmap, XCreateGC, XCreateImage, XCreatePixmap, XDefaultScreen};
32-
use xlib::xlib::{XDisplayString, XFreePixmap, XGetGeometry, XOpenDisplay, XPutImage, XRootWindow};
33-
use xlib::xlib::{XVisualInfo, ZPixmap};
31+
use xlib::{Display, Pixmap, XCreateGC, XCreateImage, XCreatePixmap, XDefaultScreen};
32+
use xlib::{XDisplayString, XFreePixmap, XGetGeometry, XOpenDisplay, XPutImage, XRootWindow};
33+
use xlib::{XVisualInfo, ZPixmap};
3434

3535
/// The display and visual info. This is needed in order to upload on the painting side. This
3636
/// holds a weak reference to the display and will not close it when done.

0 commit comments

Comments
 (0)