-
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
feat: support no-std
environments
#107
feat: support no-std
environments
#107
Conversation
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.
utACK
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.
Hi, looking good, just some small changes please.
f5944ee
to
c9a03b1
Compare
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.
ACK
This PR makes the library friendly to
no-std
environments.It also adds a new (default)
std
feature that enables corresponding functionality in dependencies.It updates tests and benchmarks to use a seeded
ChaCha12
-based pseudorandom number generator to ensure these don't requirestd
orrand
(which makes CI much cleaner).Finally, it adds a
wasm32-unknown-unknown
CI build target to ensure everything works as expected in ano-std
environment.Supersedes #103.
Closes #102.