aboutsummaryrefslogtreecommitdiffstats
path: root/components/net_traits
diff options
context:
space:
mode:
authorecoal95 <ecoal95@gmail.com>2015-06-18 20:51:34 +0100
committerecoal95 <ecoal95@gmail.com>2015-06-19 00:04:24 +0200
commit8cbfb3482c59186742fa8bcf3ec925730914ffc7 (patch)
tree65dfb2ba2e8fe5e93f22045bc9107dfc946e2cb4 /components/net_traits
parent7355bf1061a21114654c1e8abe1d752624200799 (diff)
downloadservo-8cbfb3482c59186742fa8bcf3ec925730914ffc7.tar.gz
servo-8cbfb3482c59186742fa8bcf3ec925730914ffc7.zip
Use euclid from crates.io
Diffstat (limited to 'components/net_traits')
-rw-r--r--components/net_traits/Cargo.toml5
-rw-r--r--components/net_traits/lib.rs2
2 files changed, 3 insertions, 4 deletions
diff --git a/components/net_traits/Cargo.toml b/components/net_traits/Cargo.toml
index 1500ef4f406..3bfe8910cb2 100644
--- a/components/net_traits/Cargo.toml
+++ b/components/net_traits/Cargo.toml
@@ -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"
+
diff --git a/components/net_traits/lib.rs b/components/net_traits/lib.rs
index 5c6a0cd9df8..cc5ba727453 100644
--- a/components/net_traits/lib.rs
+++ b/components/net_traits/lib.rs
@@ -7,7 +7,7 @@
#![feature(slice_patterns)]
#![feature(step_by)]
-extern crate geom;
+extern crate euclid;
extern crate hyper;
#[macro_use]
extern crate log;