-
Notifications
You must be signed in to change notification settings - Fork 84
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
Update wasm-timer to wasmtimer #202
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.
Thanks for the PR 🙌
One thing needs to be changed
reqwest-retry/Cargo.toml
Outdated
@@ -24,14 +24,14 @@ reqwest = { version = "0.12.0", default-features = false } | |||
retry-policies = "0.4" | |||
thiserror = "1.0.61" | |||
tracing = { version = "0.1.26", optional = true } | |||
wasmtimer = "0.4.1" |
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.
We need to gate this dependency behind cfg(target_arch = "wasm32")
like we did before
lgtm, but the change has conflicts now. |
Would you like me to fix the clippy issues? It seems pretty unrelated but I can mash it also into this PR. |
No worries. Clippy can be fixed in another PR |
Swaps over to wasmtimer, an updated library from wasm-timer which is not maintained.
Closes #199
See here for fork: google/tarpc#388