From 0fcc004c3946bb294301ce0fd5ea8a3791ffc84e Mon Sep 17 00:00:00 2001 From: Zack Slayton Date: Wed, 29 Apr 2015 16:46:03 -0400 Subject: [PATCH] All dependencies are now pulled from crates.io. --- Cargo.toml | 11 ++--------- src/stomp.rs | 1 - 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6b6eafa..295b3a3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,12 +14,5 @@ name = "stomp" [dependencies] "unicode-segmentation" = "*" - -[dependencies.log] -log = "*" - -[dependencies.mio] -git = "https://github.com/carllerche/mio" - -[dependencies.bytes] -git = "https://github.com/carllerche/bytes" +"log" = "*" +"mio" = "*" diff --git a/src/stomp.rs b/src/stomp.rs index aed8c76..b741c02 100644 --- a/src/stomp.rs +++ b/src/stomp.rs @@ -7,7 +7,6 @@ #[macro_use] extern crate log; extern crate collections; -extern crate bytes; extern crate mio; extern crate unicode_segmentation;