You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We use once_cell because rust-lang/rust#109737
once_cell has a large number of potential locking backends for `no_std`
environments. We were randomly using `critical-section`, which itself
requires specifying a backend, which we weren't doing. So far, we've
been protected by this by the fact that we also have once_cell as a
transient dependency (via tempfile).
Fix this to just use `std` so that we get locking via the stdlib.
Signed-off-by: Allison Karlitskaya <[email protected]>
0 commit comments