-
Notifications
You must be signed in to change notification settings - Fork 186
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
stdweb usage #123
Comments
This is (probably) going to be addressed in #109 Depending on timing (and dev availability) In practice, you would have the following stdweb = "0.4.20"
getopts = "0.2"
rand = "0.8"
stdweb-getrandom = "0.1"
easy_reader = "0.5.0"
yew = { path = "../.." } You would also need to have the following code in your crate/binary (to prevent linking issues): use stdweb_getrandom as _; We will document all of this as part of |
Probably, but I think it doesn't matter? Rand 0.8 will then depend on If Summary: no loss of functionality, just a different interface. (I think there's no reason we can't close this?) |
Related to #17
I have the following deps for my WASM project (it uses easy_reader to read random lines from a text file).
I think the line which required the stdweb feature was
reader.random_line()
but I am not sure if that will work with rand 0.8 and it says that I should change the getrandom crate instead but how can I verify that it works and will it work today already if I tried to remove the rand 0.7 dependency and use getrandom instead?What I am compiling to WASM is the following:
I read that the way I do it might be removed from rand 0.8 if I understand correctly.
The text was updated successfully, but these errors were encountered: