-
Notifications
You must be signed in to change notification settings - Fork 28
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
Sort out no_std support #86
Comments
See problem exposed in PR #124. |
I think a good first step is to get things actually compiling with With that goal, I managed to get Now |
The following command now passes: ``` cargo check -p fontique --locked --no-default-features --features libm --target x86_64-unknown-none ``` The key was removing the use of `not(any(target_vendor="apple", target_family="windows"))` to include `std` using dependencies, which triggers with `x86_64-unknown-none`. I also synced the dependency conditionals with what the code expects. This is progress towards #86.
What is the state of this now? Is it only waiting on a release of swash containing dfrg/swash#63? |
That is at least the next step! |
Currently
parley
has astd
feature which can be disabled, and we are paying the maintenance cost of maintaining that, but it can't actually do anything useful when that feature is disabled. I would suggest that:The text was updated successfully, but these errors were encountered: