-
Notifications
You must be signed in to change notification settings - Fork 327
Core revamp part 3 #255
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Core revamp part 3 #255
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
34cb65c
refactor tide-forms, tide-querystring
prasannavl 60834dc
fix err_fmt macro
prasannavl d187372
fix querystring tests
prasannavl 676132e
add basic crate level doc
prasannavl d15bb7a
cargo fmt
prasannavl 8ac86ec
fix tide-slog keywords limit
prasannavl 4d4ef6c
Merge branch 'master' into core_revamp_3
fairingrey File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was this intentional?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @yoshuawuyts - yes! This is needed since
err_fmt
is in tide_core and also re-exported bytide
.