-
Notifications
You must be signed in to change notification settings - Fork 94
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
feat: Add a feature that allows piet to be used in no_std environments #557
base: main
Are you sure you want to change the base?
Conversation
I haven't looked at the changes in any depth, but the CI failures should be resolved. |
I can't replicate the failures locally |
Is this still something you would like to see merged? If so, then the current problem is that the CI seems to be stuck in 'waiting'. I think the best approach here is for you to rebase on |
I still want this, it's just that I've been busy with more pressing issues. |
Signed-off-by: John Nunley <[email protected]>
Signed-off-by: John Nunley <[email protected]>
I have no idea why the piet-core-graphics implementation is failing |
Alright, some significant time has passed now. The macOS dependencies have been updated and we have a new ARM based macOS runner for CI. The It would be nice to get this landed. Please rebase on |
As below, so above.
The main hiccup here is that I can't use
Box<dyn std::error::Error>
onno_std
, so I just make it so theBackendError
variant ofError
isn't there onno_std
. There is probably a more elegant solution to this problem.