Skip to content

Commit

Permalink
Update once_cell to remove "unstable" feature (#185)
Browse files Browse the repository at this point in the history
According to [once_cell 1.18.0](https://github.com/matklad/once_cell/blob/v1.18.0/Cargo.toml#L55), the "unstable" feature is no longer used. This patch updates the crate and removes the feature so we do not accidentally enable any other unstable `once_cell` features in the future.
  • Loading branch information
erickt committed Nov 10, 2023
1 parent b583310 commit 53c08e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -86,7 +86,7 @@ getrandom = { version = "0.2.7", optional = true }
zerocopy = { version = "0.7.14", default-features = false, features = ["simd"] }

[target.'cfg(not(all(target_arch = "arm", target_os = "none")))'.dependencies]
once_cell = { version = "1.13.1", default-features = false, features = ["unstable", "alloc"] }
once_cell = { version = "1.18.0", default-features = false, features = ["alloc"] }

[dev-dependencies]
no-panic = "0.1.10"
Expand Down

0 comments on commit 53c08e4

Please sign in to comment.