-
Notifications
You must be signed in to change notification settings - Fork 79
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
Remove instant
dependency when not building for web
#157
Conversation
This dependency was introduced originally in #112. It is a platform abstraction, but it is a tiny one and it is not harder to just use the std type which avoids always pulling in `instant` including for `wasm32-unknown-unknown` when not building for the web where it has no purpose at all. Want to have as few dependencies as possible on core low level crates like `puffin` that almost all of our code depends on.
We should also move away from using the |
Ah, I guess |
when one introduce a new dependency one need to run |
) This dependency was introduced originally in EmbarkStudios#112. It is a platform abstraction, but it is a tiny one and it is not harder to just use the std type which avoids always pulling in `instant` including for `wasm32-unknown-unknown` when not building for the web where it has no purpose at all. Want to have as few dependencies as possible on core low level crates like `puffin` that almost all of our code depends on. --------- Co-authored-by: Emil Ernerfeldt <[email protected]>
This dependency was introduced originally in #112.
It is a platform abstraction, but it is a tiny one and it is not harder to just use the std type which avoids always pulling in
instant
including forwasm32-unknown-unknown
when not building for the web where it has no purpose at all.Want to have as few dependencies as possible on core low level crates like
puffin
that almost all of our code depends on.