diff --git a/Cargo.toml b/Cargo.toml index 2fab90cb..b741bda0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,32 +1,22 @@ [package] name = "hyper" -version = "0.0.1" -authors = ["Sean McArthur "] +version = "0.0.8" +description = "A modern HTTP library." +readme = "README.md" +documentation = "http://hyperium.github.io/hyper/hyper/index.html" +repository = "https://github.com/hyperium/hyper" +license = "MIT" +authors = ["Sean McArthur ", + "Jonathan Reem "] -[dependencies.url] -git = "https://github.com/servo/rust-url" +[dependencies] +url = "*" +openssl = "*" +mime = "*" +unsafe-any = "*" +typeable = "*" +cookie = "*" +time = "*" +mucell = "*" -[dependencies.openssl] -git = "https://github.com/sfackler/rust-openssl" - -[dependencies.mime] -git = "https://github.com/hyperium/mime.rs" - -[dependencies.unsafe-any] -git = "https://github.com/reem/rust-unsafe-any" - -[dev-dependencies.curl] -git = "https://github.com/carllerche/curl-rust" - -[dev-dependencies.http] -git = "https://github.com/chris-morgan/rust-http" - -[dependencies.cookie] -git = "https://github.com/alexcrichton/cookie-rs" - -[dependencies.time] -git = "https://github.com/rust-lang/time" - -[dependencies.mucell] -git = "https://github.com/chris-morgan/mucell"