diff options
-rw-r--r-- | ports/cef/Cargo.lock | 1 | ||||
-rw-r--r-- | ports/cef/Cargo.toml | 3 | ||||
-rw-r--r-- | ports/gonk/Cargo.lock | 1 | ||||
-rw-r--r-- | ports/gonk/Cargo.toml | 2 |
4 files changed, 6 insertions, 1 deletions
diff --git a/ports/cef/Cargo.lock b/ports/cef/Cargo.lock index 32a8bd164a7..c6b9c00bb42 100644 --- a/ports/cef/Cargo.lock +++ b/ports/cef/Cargo.lock @@ -15,6 +15,7 @@ dependencies = [ "glutin_app 0.0.1", "js 0.1.0 (git+https://github.com/servo/rust-mozjs)", "layers 0.1.0 (git+https://github.com/servo/rust-layers)", + "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", diff --git a/ports/cef/Cargo.toml b/ports/cef/Cargo.toml index 5ecacc4e5dd..2399c8c7088 100644 --- a/ports/cef/Cargo.toml +++ b/ports/cef/Cargo.toml @@ -75,4 +75,5 @@ git = "https://github.com/servo/gleam" git = "https://github.com/servo/rust-cgl" [dependencies] -url = "*"
\ No newline at end of file +url = "*" +libc = "*"
\ No newline at end of file diff --git a/ports/gonk/Cargo.lock b/ports/gonk/Cargo.lock index 2359111138c..9926452e4e0 100644 --- a/ports/gonk/Cargo.lock +++ b/ports/gonk/Cargo.lock @@ -8,6 +8,7 @@ dependencies = [ "geom 0.1.0 (git+https://github.com/servo/rust-geom)", "layers 0.1.0 (git+https://github.com/servo/rust-layers)", "layout 0.0.1", + "libc 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "script 0.0.1", "servo 0.0.1", diff --git a/ports/gonk/Cargo.toml b/ports/gonk/Cargo.toml index f78f4cfbd25..574eab7c26f 100644 --- a/ports/gonk/Cargo.toml +++ b/ports/gonk/Cargo.toml @@ -36,3 +36,5 @@ path = "../../components/util" [dependencies.egl] git = "https://github.com/servo/rust-egl" +[dependencies] +libc = "*" |