-
-
Notifications
You must be signed in to change notification settings - Fork 271
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
Wasm build by adding default-client
feature gate
#591
Merged
Merged
Changes from 2 commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
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 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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
[package] | ||
name = "octocrab" | ||
version = "0.34.1" | ||
resolver = "2" | ||
authors = ["XAMPPRocky <[email protected]>"] | ||
edition = "2018" | ||
readme = "README.md" | ||
|
@@ -38,7 +39,7 @@ hyper = "1.1.0" | |
hyper-rustls = { version = "0.26.0", optional = true } | ||
hyper-timeout = { version = "0.5.1", optional = true } | ||
hyper-tls = { version = "0.6.0", optional = true } | ||
hyper-util = { version = "0.1.3", features = ["client-legacy", "http1"] } | ||
hyper-util = { version = "0.1.3", features = ["http1"] } | ||
once_cell = "1.7.2" | ||
percent-encoding = "2.2.0" | ||
pin-project = "1.0.12" | ||
|
@@ -68,7 +69,7 @@ pretty_assertions = "1.4.0" | |
graphql_client = "0.13.0" | ||
|
||
[features] | ||
default = ["follow-redirect", "retry", "rustls", "timeout", "tracing"] | ||
default = ["follow-redirect", "retry", "rustls", "timeout", "tracing", "default-client"] | ||
|
||
follow-redirect = ["tower-http/follow-redirect"] | ||
retry = ["tower/retry", "futures-util"] | ||
|
@@ -77,3 +78,4 @@ rustls-webpki-tokio = ["hyper-rustls/webpki-tokio"] | |
opentls = ["hyper-tls"] | ||
stream = ["futures-core", "futures-util"] | ||
timeout = ["hyper-timeout", "tokio", "tower/timeout"] | ||
default-client = ["hyper-util/client-legacy"] |
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.
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.
What makes this one incompatible with WASM?
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.
It depends on
OctocrabBuilder::default().build()
, which is not available on wasm32. Another approach would be having 2 differentOctocrabBuilder::default()
impls.I also found another issue with building for wasm:
Buffer::new()
here depends on tokio. To make it work on wasm I had to changed toBuffer::pair
, pass in the executor and spawn the worker task.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.
Yeah, I think I'd prefer having default client that works on WASM.
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.
I re-checked the code and realized why I didn't go with 2 default impls in the first place: there's currently no good default
Svc
on wasm. An empty/do-nothing one would be pointless here, since theSTATIC_INSTANCE
would not work anyway. Bringing in a workingSvc
for wasm looks like the better option, andreqwest
is a great candidate. However it's still using an old version ofhttp
seanmonstar/reqwest#2059I made a half-working implementation using
gloo_net
, however it involves manually constructgloo_net::Request
fromhttp::Request<String>
, making the code ugly. Soon after testing a few endpoint, I realize the github rest API would not work for my use case, so had to switch to its graphql API, so I didn't finish the wasm http clienttower::Service
implementation.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.
Yeah,
reqwest
is a no go, because it does not support using or gettinghttp::{Request, Response}
,reqwest
returns its own types and in order to be Sans-IO and client agnostic,octocrab
has to supporthttp
types, notreqwest
types.