-
-
Notifications
You must be signed in to change notification settings - Fork 407
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
[Merged by Bors] - First batch of no_std
support for some sub-crates
#2544
Conversation
Huh, seems like Github servers are failing. I'll rerun the CI after some hours, hopefully the problem is fixed then. |
Test262 conformance changes
|
Codecov Report
@@ Coverage Diff @@
## main #2544 +/- ##
=======================================
Coverage 50.16% 50.16%
=======================================
Files 379 379
Lines 37488 37488
=======================================
Hits 18804 18804
Misses 18684 18684 Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
3763f24
to
442e4c5
Compare
bors r+ |
<!--- Thank you for contributing to Boa! Please fill out the template below, and remove or add any information as you feel necessary. ---> This Pull Request enables support for `no_std` targets on some of our sub-crates. I intentionally left out `boa_ast` and `boa_cli` because they're the largest crates we have after `boa_engine`. `boa_gc` is a monster on its own, because we'll need to design a `no_std` multithreaded GC. Anyways, this changes the following: - Adds support for `no_std` on `boa_unicode`. - Adds support for `no_std` on `boa_profiler`. - Adds support for `no_std` on `boa_interner`. - Adds support for `no_std` on `boa_icu_provider`.
Pull request successfully merged into main. Build succeeded:
|
no_std
support for some sub-cratesno_std
support for some sub-crates
This Pull Request enables support for
no_std
targets on some of our sub-crates. I intentionally left outboa_ast
andboa_cli
because they're the largest crates we have afterboa_engine
.boa_gc
is a monster on its own, because we'll need to design ano_std
multithreaded GC.Anyways, this changes the following:
no_std
onboa_unicode
.no_std
onboa_profiler
.no_std
onboa_interner
.no_std
onboa_icu_provider
.