-
Notifications
You must be signed in to change notification settings - Fork 11
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
initial no_std support #4
base: main
Are you sure you want to change the base?
Conversation
not sure is it fail or just failed to check |
It failed due to formating. So it's not a problem. I can fix it. Also, there are some other things I want to add. However, I am currently quite busy, but I have it on my mind. |
@@ -20,6 +20,16 @@ path = "src/lib.rs" | |||
name = "plot" | |||
path = "examples/plot.rs" | |||
|
|||
[dependencies] | |||
[dependencies.num-traits] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you really need this dependency? What is it doing?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Its for mathematical operations on floats. no_std dont have it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
AFAIK num_trait is for division/multiplication, and libm is for sqrt
…"std" and invert logic
Could you test if this works for you one final time before I release it? |
No description provided.