aboutsummaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
authorMs2ger <ms2ger@gmail.com>2015-02-19 21:38:25 +0100
committerMs2ger <ms2ger@gmail.com>2015-02-19 21:38:25 +0100
commitb6483c96be9408b95356c20bb8c941dd40741bb0 (patch)
treedea1044a1782bbd2a2f8c98a74a2a389d26e1390 /components
parentd94bd278a4a6e5ef38a9967be69ada0f1bf50f6d (diff)
downloadservo-b6483c96be9408b95356c20bb8c941dd40741bb0.tar.gz
servo-b6483c96be9408b95356c20bb8c941dd40741bb0.zip
Move layout to libc from crates.io.
Diffstat (limited to 'components')
-rw-r--r--components/layout/Cargo.toml1
-rw-r--r--components/layout/lib.rs1
-rw-r--r--components/script_traits/Cargo.toml3
-rw-r--r--components/script_traits/lib.rs1
-rw-r--r--components/servo/Cargo.lock2
5 files changed, 5 insertions, 3 deletions
diff --git a/components/layout/Cargo.toml b/components/layout/Cargo.toml
index eb39cdf3123..b24e2c2562c 100644
--- a/components/layout/Cargo.toml
+++ b/components/layout/Cargo.toml
@@ -60,3 +60,4 @@ encoding = "0.2"
url = "0.2.16"
bitflags = "*"
rustc-serialize = "0.2"
+libc = "*"
diff --git a/components/layout/lib.rs b/components/layout/lib.rs
index 5644f55b7c2..44f8f49c056 100644
--- a/components/layout/lib.rs
+++ b/components/layout/lib.rs
@@ -9,7 +9,6 @@
#![feature(hash)]
#![feature(int_uint)]
#![feature(io)]
-#![feature(libc)]
#![feature(path)]
#![feature(plugin)]
#![feature(rustc_private)]
diff --git a/components/script_traits/Cargo.toml b/components/script_traits/Cargo.toml
index 3779a3eb52a..f8de04e4a69 100644
--- a/components/script_traits/Cargo.toml
+++ b/components/script_traits/Cargo.toml
@@ -23,4 +23,5 @@ path = "../devtools_traits"
git = "https://github.com/servo/rust-geom"
[dependencies]
-url = "0.2.16" \ No newline at end of file
+url = "0.2.16"
+libc = "*"
diff --git a/components/script_traits/lib.rs b/components/script_traits/lib.rs
index 6bee3c388d1..cf5c63779be 100644
--- a/components/script_traits/lib.rs
+++ b/components/script_traits/lib.rs
@@ -4,7 +4,6 @@
#![feature(core)]
#![feature(int_uint)]
-#![feature(libc)]
#![allow(missing_copy_implementations)]
diff --git a/components/servo/Cargo.lock b/components/servo/Cargo.lock
index 8e5656be4ff..abf404d4cbf 100644
--- a/components/servo/Cargo.lock
+++ b/components/servo/Cargo.lock
@@ -500,6 +500,7 @@ dependencies = [
"geom 0.1.0 (git+https://github.com/servo/rust-geom)",
"gfx 0.0.1",
"layout_traits 0.0.1",
+ "libc 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
"msg 0.0.1",
"net 0.0.1",
"plugins 0.0.1",
@@ -725,6 +726,7 @@ version = "0.0.1"
dependencies = [
"devtools_traits 0.0.1",
"geom 0.1.0 (git+https://github.com/servo/rust-geom)",
+ "libc 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
"msg 0.0.1",
"net 0.0.1",
"url 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)",