-
Notifications
You must be signed in to change notification settings - Fork 324
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Core revamp part 3
- Loading branch information
Showing
17 changed files
with
155 additions
and
51 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 was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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,9 @@ | ||
//! For internal use. These APIs will never be stable and | ||
//! are meant to be used internally by the tide repo. | ||
use core::pin::Pin; | ||
use futures::future::Future; | ||
|
||
/// Convenience alias for pinned box of Future<EndpointResult<T>> + Send + 'static | ||
pub type BoxTryFuture<T> = | ||
Pin<Box<dyn Future<Output = crate::error::EndpointResult<T>> + Send + 'static>>; |
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,31 @@ | ||
[package] | ||
authors = [ | ||
"Tide Developers" | ||
] | ||
description = "Form helpers and extensions for Tide" | ||
documentation = "https://docs.rs/tide-forms" | ||
keywords = ["tide", "web", "async", "helpers", "forms"] | ||
categories = [ | ||
"network-programming", | ||
"web-programming::http-server", | ||
] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
name = "tide-forms" | ||
readme = "README.md" | ||
repository = "https://github.com/rustasync/tide" | ||
version = "0.1.0" | ||
|
||
[dependencies] | ||
tide-core = { path = "../tide-core" } | ||
http-service = "0.2.0" | ||
futures-preview = "0.3.0-alpha.16" | ||
http = "0.1" | ||
log = "0.4.6" | ||
multipart = { version = "0.16.1", features = ["server"], default-features = false } | ||
serde = { version = "1.0.91", features = ["derive"] } | ||
serde_urlencoded = "0.5.5" | ||
|
||
[dev-dependencies] | ||
tide = { path = "../" } | ||
|
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,31 @@ | ||
[package] | ||
authors = [ | ||
"Tide Developers" | ||
] | ||
description = "Query string helpers and extensions for Tide" | ||
documentation = "https://docs.rs/tide-querystring" | ||
keywords = ["tide", "web", "async", "helpers", "querystring"] | ||
categories = [ | ||
"network-programming", | ||
"web-programming::http-server", | ||
] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
name = "tide-querystring" | ||
readme = "README.md" | ||
repository = "https://github.com/rustasync/tide" | ||
version = "0.1.0" | ||
|
||
[dependencies] | ||
tide-core = { path = "../tide-core" } | ||
futures-preview = "0.3.0-alpha.16" | ||
http = "0.1" | ||
log = "0.4.6" | ||
serde = { version = "1.0.91", features = ["derive"] } | ||
serde_urlencoded = "0.5.5" | ||
|
||
[dev-dependencies] | ||
tide = { path = "../" } | ||
http-service = "0.2.0" | ||
http-service-mock = "0.2.0" | ||
|
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