Commit 6884b98
composefs: fix feature flags of once_cell
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]>1 parent 3b6c649 commit 6884b98
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
23 | | - | |
| 23 | + | |
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
| |||
0 commit comments