We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The documentation on Features for v3.1.1 says that threads are disabled by default, however that is not the case.
Features
threads
The following code crashes:
assert_eq!(wasmer::Features::new().threads, false);
That the documentation matches the behavior.
The text was updated successfully, but these errors were encountered:
Good call. We need to fix this on the docs
Sorry, something went wrong.
Need to check also the CLI to be able to disable threads.
@ptitSeb we should enable them by default now (replicating browsers behavior), so we just need to update the docs
Done with #3665
Michael-F-Bryan
No branches or pull requests
Describe the bug
The documentation on
Features
for v3.1.1 says thatthreads
are disabled by default, however that is not the case.Steps to reproduce
The following code crashes:
Expected behavior
That the documentation matches the behavior.
The text was updated successfully, but these errors were encountered: