From 2ca119fd80f9ea5f52f7393776b1d84a3da2e20b Mon Sep 17 00:00:00 2001 From: Jonathan Reem Date: Mon, 15 Sep 2014 19:21:17 -0700 Subject: [PATCH] Added Typeable dependency. --- Cargo.toml | 3 +++ src/lib.rs | 1 + 2 files changed, 4 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index afca46b6..bb32c536 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,6 +19,9 @@ git = "https://github.com/reem/rust-intertwine" [dependencies.move-acceptor] git = "https://github.com/reem/rust-move-acceptor" +[dependencies.typeable] +git = "https://github.com/reem/rust-typeable" + [dev-dependencies.curl] git = "https://github.com/carllerche/curl-rust" diff --git a/src/lib.rs b/src/lib.rs index a4d26cba..a78979ce 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -11,6 +11,7 @@ extern crate url; extern crate "unsafe-any" as uany; extern crate "move-acceptor" as macceptor; extern crate intertwine; +extern crate typeable; pub use std::io::net::ip::{SocketAddr, IpAddr, Ipv4Addr, Ipv6Addr, Port}; pub use mimewrapper::mime;