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

Use rust stable OnceLock, drop OnceCell crate #181

Merged
merged 2 commits into from
Aug 3, 2023

Commits on Aug 3, 2023

  1. Dropped dependency on once_cell

    In rust version 1.70.x "OnceCell" and it sync equivalent "OnceLock" were stabilized
    and moved in "std"
    
    https://blog.rust-lang.org/2023/06/01/Rust-1.70.0.html
    
    From a maintenance perspective - One less package to track.
    From a security perspective - A reduced attack surface.
    
    I have updated the Cargo.tomls "rust-version" to 1.70 to enforce this new reality.
    martinfrances107 authored and aperepel committed Aug 3, 2023
    Configuration menu
    Copy the full SHA
    4390b19 View commit details
    Browse the repository at this point in the history
  2. PR leptos-rs#179 from @martinfrances107 with some additional improvem…

    …ents around init/error feedback.
    aperepel committed Aug 3, 2023
    Configuration menu
    Copy the full SHA
    5660c5d View commit details
    Browse the repository at this point in the history