Skip to content
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

Don't use once_cell #61

Merged
merged 1 commit into from
Sep 22, 2022
Merged

Don't use once_cell #61

merged 1 commit into from
Sep 22, 2022

Commits on Sep 22, 2022

  1. once_cell dependency is not needed

    `once_cell` upgraded the MSRV to 1.56. This breaks the use of
    `iana-time-zone` transitively even though we only use it for Android
    targets.
    
    This PR replaces `once_cell` by using `static mut` + `std::sync::Once`.
    `once_cell` is more or less only a safe wrapper around both, but not
    actually needed. We already do the same in our Windows targets.
    Kijewski committed Sep 22, 2022
    Configuration menu
    Copy the full SHA
    32bc714 View commit details
    Browse the repository at this point in the history