diff options
Diffstat (limited to 'components')
-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 |
4 files changed, 4 insertions, 2 deletions
diff --git a/components/servo/Cargo.lock b/components/servo/Cargo.lock index ac3a7c801c2..060328b59da 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 df86056cace..225d8f8a3b5 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; |