diff --git a/Cargo.toml b/Cargo.toml index 0792a6e..a22db06 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,6 @@ license = "MIT" readme = "README.md" [dependencies] -actix = "*" actix-web = { git = "https://github.com/actix/actix-web.git" } bytes = "0.4" futures = "0.1" diff --git a/src/main.rs b/src/main.rs index dbf3ce5..c434c3c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,5 +1,4 @@ extern crate actix_web; -extern crate actix; extern crate bytes; extern crate futures; extern crate tar; @@ -10,6 +9,7 @@ mod channel; mod web; use actix_web::server; +use actix_web::actix; use std::env; use std::io;