diff options
-rw-r--r-- | components/servo/Cargo.lock | 1 | ||||
-rw-r--r-- | components/servo/Cargo.toml | 1 | ||||
-rw-r--r-- | components/servo/lib.rs | 2 | ||||
-rw-r--r-- | components/servo/main.rs | 2 | ||||
-rw-r--r-- | ports/cef/Cargo.lock | 1 | ||||
-rw-r--r-- | ports/gonk/Cargo.lock | 1 |
6 files changed, 6 insertions, 2 deletions
diff --git a/components/servo/Cargo.lock b/components/servo/Cargo.lock index 4748de71fca..4b74955c37b 100644 --- a/components/servo/Cargo.lock +++ b/components/servo/Cargo.lock @@ -11,6 +11,7 @@ dependencies = [ "gfx_tests 0.0.1", "glutin_app 0.0.1", "layout 0.0.1", + "libc 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "net 0.0.1", "net_tests 0.0.1", diff --git a/components/servo/Cargo.toml b/components/servo/Cargo.toml index 2a57db1d9ee..7693687e1cb 100644 --- a/components/servo/Cargo.toml +++ b/components/servo/Cargo.toml @@ -103,3 +103,4 @@ optional = true url = "0.2.16" time = "0.1.12" bitflags = "*" +libc = "*" diff --git a/components/servo/lib.rs b/components/servo/lib.rs index f3837112a82..8ff1ee63ff3 100644 --- a/components/servo/lib.rs +++ b/components/servo/lib.rs @@ -16,7 +16,7 @@ // // The `Browser` is fed events from a generic type that implements the // `WindowMethods` trait. -#![feature(libc, thread_local)] +#![feature(thread_local)] extern crate compositing; extern crate devtools; diff --git a/components/servo/main.rs b/components/servo/main.rs index 6de2b2d1399..0358a971b3e 100644 --- a/components/servo/main.rs +++ b/components/servo/main.rs @@ -15,7 +15,7 @@ //! //! [glutin]: https://github.com/tomaka/glutin -#![feature(start, libc)] +#![feature(start)] // The Servo engine extern crate servo; diff --git a/ports/cef/Cargo.lock b/ports/cef/Cargo.lock index 2671a8cdc53..f59618332a9 100644 --- a/ports/cef/Cargo.lock +++ b/ports/cef/Cargo.lock @@ -1047,6 +1047,7 @@ dependencies = [ "gfx 0.0.1", "glutin_app 0.0.1", "layout 0.0.1", + "libc 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "net 0.0.1", "net_traits 0.0.1", diff --git a/ports/gonk/Cargo.lock b/ports/gonk/Cargo.lock index 6d8e591a0ba..21ff1723078 100644 --- a/ports/gonk/Cargo.lock +++ b/ports/gonk/Cargo.lock @@ -1019,6 +1019,7 @@ dependencies = [ "devtools_traits 0.0.1", "gfx 0.0.1", "layout 0.0.1", + "libc 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "net 0.0.1", "net_traits 0.0.1", |