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

@ -7,9 +7,6 @@ authors = ["The Servo Project Developers"]
name = "net_traits"
path = "lib.rs"
[dependencies.geom]
git = "https://github.com/servo/rust-geom"
[dependencies.png]
git = "https://github.com/servo/rust-png"
@ -26,3 +23,5 @@ git = "https://github.com/servo/rust-stb-image"
log = "*"
url = "0.2.35"
hyper = "0.5"
euclid = "0.1"

View file

@ -7,7 +7,7 @@
#![feature(slice_patterns)]
#![feature(step_by)]
extern crate geom;
extern crate euclid;
extern crate hyper;
#[macro_use]
extern crate log;