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
Browser and version, if relevant: 114.0.5735.133 (Official Build) (x86_64)
Questionnaire
I would appreciate help on why this is happening and possible pointers towards fixing this.
I'm sorry for submitting this here if this is the wrong place to do so. I've been trying to figure this out for the past two days and I'm well and truly stumped.
The text was updated successfully, but these errors were encountered:
error: failed to run custom build command for libssh2-sys v0.3.0
This is because your project have dependencies that requires libssh2, which is not supported under WebAssembly.
SSH uses TCP connection, WebAssembly running in browser will not support TCP connections.
You can find out which dependency is using it with cargo tree -i libssh2-sys.
@futursolo Turns out, your suggestion helped me loads, I managed to identify the cluprit. It was some nested dependency. I'll have to update the dependencies that are causing the problem.
Problem
I described steps and error logs in #1 of my VCheck.rs project.
Steps To Reproduce
Steps to reproduce the behavior:
trunk --config trunk.toml serve
Expected behavior
I exepcted for the build not to fail and for Trunk to serve my app normally on
localhost
Environment:
wasm32-unknown-unknown
trunk
Questionnaire
I would appreciate help on why this is happening and possible pointers towards fixing this.
I'm sorry for submitting this here if this is the wrong place to do so. I've been trying to figure this out for the past two days and I'm well and truly stumped.
The text was updated successfully, but these errors were encountered: