Use euclid from crates.io

This commit is contained in:
ecoal95 2015-06-18 20:51:34 +01:00
parent 7355bf1061
commit 8cbfb3482c
104 changed files with 272 additions and 306 deletions

View file

@ -16,9 +16,6 @@ path = "../util"
[dependencies.devtools_traits]
path = "../devtools_traits"
[dependencies.geom]
git = "https://github.com/servo/rust-geom"
[dependencies.png]
git = "https://github.com/servo/rust-png"
@ -34,3 +31,4 @@ regex_macros = "0.1.8"
hyper = "0.5"
flate2 = "0.2.0"
uuid = "0.1.16"
euclid = "0.1"

View file

@ -16,7 +16,7 @@ extern crate net_traits;
extern crate cookie as cookie_rs;
extern crate devtools_traits;
extern crate flate2;
extern crate geom;
extern crate euclid;
extern crate hyper;
extern crate png;
#[macro_use]