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

refactor: Replace lazy_static with std::sync::LazyLock #827

Merged
merged 9 commits into from
Jul 31, 2024

Commits on Jul 25, 2024

  1. refactor: Replace lazy_static with std::sync::LazyLock

    std::cell::LazyCell and std::sync::LazyLock were
    stabilized in Rust 1.80.0. We can now use the
    standard library types instead of the lazy_static
    crate.
    Techassi committed Jul 25, 2024
    Configuration menu
    Copy the full SHA
    98eac93 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2bdaa35 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    12c6da2 View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2024

  1. Configuration menu
    Copy the full SHA
    9550b82 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1dbe937 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a09dcba View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    93ebe82 View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2024

  1. Apply suggestion

    Co-authored-by: Nick <10092581+NickLarsenNZ@users.noreply.github.com>
    Techassi and NickLarsenNZ authored Jul 31, 2024
    Configuration menu
    Copy the full SHA
    4246542 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ded736a View commit details
    Browse the repository at this point in the history