-
Notifications
You must be signed in to change notification settings - Fork 3
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
no_std + alloc crate #6
base: main
Are you sure you want to change the base?
Conversation
could you give https://github.com/brandonros/ureq_wasm_ui a look and help me track down where the |
I can have a look tomorrow! This PR fixes only ureq-proto, which is underpinning ureq. So there is still work I need to do in ureq itself. Is this test checking ureq-proto or ureq? |
@@ -1,4 +1,5 @@ | |||
use std::mem; | |||
use alloc::string::ToString; | |||
use core::mem; | |||
|
|||
use http::{HeaderMap, HeaderName, HeaderValue, Method, Request, Uri, Version}; |
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.
is this using the http
crate from hyper? would you want to try from this branch? hyperium/http#732 otherwise i'm confused how no_std is pulling in a std crate?
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.
This might be where it breaks down. The http crate working in webasm is central to this effort.
No description provided.