issues
search
zcash
/
pasta_curves
Rust implementation for zcash/pasta
Other
81
stars
49
forks
source link
Replace `lazy_static` with `core::cell::OnceCell` once MSRV is at least 1.70
#82
Open
str4d
opened
7 months ago
str4d
commented
7 months ago
81 is a short-term solution to the problem of the
lazy_static/spin_no_std
feature flag. The long-term solution is to migrate to
core::cell::OnceCell
, which was stabilised in 1.70.
81 is a short-term solution to the problem of the
lazy_static/spin_no_std
feature flag. The long-term solution is to migrate tocore::cell::OnceCell
, which was stabilised in 1.70.