You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You'll want to comment out the assertion that causes issue #174 to have a panic, then cargo clean so cargo rebuilds std with this change. Then, patch the ring crate to be the one I'm trying to get pulled into the main branch,
EDIT: It has been pulled!
EDIT2: Note: Point at ring's main branch.
[patch.crates-io]
ring = {git = "https://github.com/briansmith/ring"}
Note that patch and profile sections go in Cargo.toml, if you're using a cargo workspace, it does in the workspace's Cargo.toml
Additionally, you'll want the environment variable
And now, the minreq crate will now let you do https.
Having a timeout may be that which causes the ureq crate to fail, I've been told to look into yielding when listening on an mpsc::Receiver, but I'm not that great at modifying std, so instead I just modified and patched ehttp to use minreq on cfg(target_os = "horizon")
The text was updated successfully, but these errors were encountered:
You'll want to comment out the assertion that causes issue #174 to have a panic, then cargo clean so cargo rebuilds std with this change.
Then, patch thering
crate to be the one I'm trying to get pulled into the main branch,EDIT: It has been pulled!
EDIT2: Note: Point at ring's main branch.
and ensure
Note that
patch
andprofile
sections go inCargo.toml
, if you're using a cargo workspace, it does in the workspace'sCargo.toml
Additionally, you'll want the environment variable
And now, the
minreq
crate will now let you do https.Having a timeout may be that which causes the
ureq
crate to fail, I've been told to look into yielding when listening on anmpsc::Receiver
, but I'm not that great at modifyingstd
, so instead I just modified and patchedehttp
to useminreq
oncfg(target_os = "horizon")
The text was updated successfully, but these errors were encountered: