Files
hyper/Cargo.toml
Jonathan Reem 928f63c368 Removes intertwining, since it is slow and showing up in profiles
Intertwining was a nice feature, but it slows down hyper significantly,
so it is being removed.

There is some fallout from this, mainly that Incoming has had its type
parameter changed to `<A = HttpAcceptor>` and Handler receiving one
bounded with `A: NetworkAcceptor`.

[breaking-change]

Fixes #112
2014-11-10 17:26:55 -08:00

33 lines
745 B
TOML

[package]
name = "hyper"
version = "0.0.1"
authors = ["Sean McArthur <sean.monstar@gmail.com>"]
[dependencies.url]
git = "https://github.com/servo/rust-url"
[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"
[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"
[dev-dependencies.http]
git = "https://github.com/chris-morgan/rust-http"
[dependencies.cookie]
git = "https://github.com/alexcrichton/cookie-rs"