-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: do not depends on extra http_shim crate
- Loading branch information
1 parent
da9b314
commit f4d0078
Showing
6 changed files
with
19 additions
and
235 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 was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#[cfg(all(feature = "http_old", not(feature = "http_new")))] | ||
pub use http0_x as http; | ||
|
||
#[cfg(all(feature = "http_new", feature = "http_old"))] | ||
pub use http0_x as http; | ||
|
||
#[cfg(all(feature = "http_new", not(feature = "http_old")))] | ||
pub use http1_x as http; |