forked from rwf2/Rocket
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split the 'http' module into its own 'rocket_http' crate.
- Loading branch information
1 parent
900e716
commit df71111
Showing
44 changed files
with
432 additions
and
203 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
[package] | ||
name = "rocket_http" | ||
version = "0.4.0-dev" | ||
authors = ["Sergio Benitez <[email protected]>"] | ||
description = """ | ||
Types, traits, and parsers for HTTP requests, responses, and headers. | ||
""" | ||
documentation = "https://api.rocket.rs/rocket_http/" | ||
homepage = "https://rocket.rs" | ||
repository = "https://github.com/SergioBenitez/Rocket" | ||
readme = "../../README.md" | ||
keywords = ["rocket", "web", "framework", "http"] | ||
license = "MIT/Apache-2.0" | ||
categories = ["web-programming"] | ||
|
||
[features] | ||
tls = ["rustls", "hyper-sync-rustls"] | ||
|
||
[dependencies] | ||
pear = { git = "http://github.com/SergioBenitez/Pear", rev = "54667ae" } | ||
smallvec = "0.6" | ||
percent-encoding = "1" | ||
hyper = { version = "0.10.13", default-features = false } | ||
time = "0.1" | ||
indexmap = "1.0" | ||
rustls = { version = "0.12.0", optional = true } | ||
|
||
[dependencies.cookie] | ||
git = "https://github.com/alexcrichton/cookie-rs" | ||
rev = "0365a18" | ||
features = ["percent-encode", "secure"] | ||
|
||
[dependencies.hyper-sync-rustls] | ||
version = "=0.3.0-rc.2" | ||
features = ["server"] | ||
optional = true | ||
|
||
[dev-dependencies] | ||
rocket = { version = "0.4.0-dev", path = "../lib" } | ||
rocket_codegen = { version = "0.4.0-dev", path = "../codegen" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.