mirror of
https://github.com/leptos-rs/leptos.git
synced 2025-12-27 09:54:41 -05:00
* Removed crate once_cell As of rust_version 1.80.0 there are now equivalent options in std. Async and sync changes are as follows. -use once_cell::sync::Lazy; +use std::sync::LazyLock; -use once_cell::sync::Lazy; +use std::sync::LazyLock; * ran cargo fmt. * fixed server_fn errors. * cargo fmt fixes. * "use srd::sync" becomes "use std::sync". * fixed formatting issue. * formatting issues. * Fixed error in examples/server_fns_axum * more formatting issues. * more formatting issues. * [autofix.ci] apply automated fixes --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>