Update Cargo.{lock,toml} to reference servo-egl instead of egl

The crate name was changed in this commit:

ebbd1cff89
This commit is contained in:
Corey Farwell 2015-12-16 20:30:12 -05:00
parent d9bf1ba616
commit 2cf29cbcdb
2 changed files with 2 additions and 12 deletions

10
ports/gonk/Cargo.lock generated
View file

@ -4,7 +4,6 @@ version = "0.0.1"
dependencies = [
"compositing 0.0.1",
"devtools 0.0.1",
"egl 0.2.0 (git+https://github.com/servo/rust-egl)",
"env_logger 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
"errno 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
"euclid 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
@ -18,6 +17,7 @@ dependencies = [
"profile 0.0.1",
"script 0.0.1",
"servo 0.0.1",
"servo-egl 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"time 0.1.34 (registry+https://github.com/rust-lang/crates.io-index)",
"url 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
"util 0.0.1",
@ -388,14 +388,6 @@ dependencies = [
"libc 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "egl"
version = "0.2.0"
source = "git+https://github.com/servo/rust-egl#c59c59f6dc252e2ab17103b045d7ab1e452f32da"
dependencies = [
"libc 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "encoding"
version = "0.2.32"

View file

@ -40,9 +40,6 @@ path = "../../components/profile"
[dependencies.util]
path = "../../components/util"
[dependencies.egl]
git = "https://github.com/servo/rust-egl"
[dependencies]
env_logger = "0.3"
url = "0.5"
@ -51,3 +48,4 @@ errno = "0.1"
libc = "0.2"
euclid = {version = "0.4", features = ["plugins"]}
gleam = "0.2"
servo-egl = "0.2"