mirror of
https://github.com/leptos-rs/leptos.git
synced 2025-12-27 09:54:41 -05:00
Removed crate once_cell (#4083)
* 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>
This commit is contained in:
@@ -22,7 +22,6 @@ url = { workspace = true, default-features = true }
|
||||
js-sys = { workspace = true, default-features = true }
|
||||
wasm-bindgen = { workspace = true , default-features = true }
|
||||
tracing = { optional = true , workspace = true, default-features = true }
|
||||
once_cell = { workspace = true, default-features = true }
|
||||
send_wrapper = { workspace = true, default-features = true }
|
||||
thiserror = { workspace = true , default-features = true }
|
||||
percent-encoding = { optional = true , workspace = true, default-features = true }
|
||||
|
||||
Reference in New Issue
Block a user