-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
feat: wasm32-wasi target support #2900
base: 0.14.x
Are you sure you want to change the base?
Conversation
532735a
to
13b4e30
Compare
d28fbdc
to
b465726
Compare
Currently the unit tests fail (even on a clean pull of Hyper and checking out the
|
aece7d0
to
cc8ab48
Compare
Thanks for hacking away on this! I'm curious, with the split that's currently proposed for hyper 1.0, where hyper no longer directly includes the |
How should I proceed? Can we do both, have The main points:
I'm also on the Tokio Discord if you'd like to chat there. Definitely want to see this through! |
2850bd6
to
cbb93bd
Compare
@seanmonstar Code updated, would like to revisit this. Could the CI run? |
@seanmonstar This should do it, may I have a CI re-run? |
26d7713
to
7baf23d
Compare
The main branch seems to work with Wasi, as |
All tests pass except Miri, and it's not related to my changes; how shall I proceed? |
|
src/server/tcp.rs
Outdated
@@ -439,6 +466,7 @@ mod tests { | |||
} | |||
} | |||
|
|||
<<<<<<< HEAD |
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.
The latest push contains unmerged changes.
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.
Thanks! So weird that Git and cargo
didn't catch that...
3ddf40e
to
9a4db8a
Compare
Support the `wasm32-wasi` target, disabling unsupported components. Signed-off-by: Richard Zak <[email protected]>
Work-in-progress
wasm32-wasi
target support for theserver
feature.Requires: tokio-rs/tokio#4716
Signed-off-by: Richard Zak [email protected]