Closed ThisAccountHasBeenSuspended closed 2 months ago
lazy_static is no longer needed since Rust 1.70.0
lazy_static
Rust 1.70.0
Changes have been made HERE to reduce memory usage and improve performance.
String
Box<str>
constants.rs
This is great, but there's some conflicts with some other PRs I just merged, can you update this branch?
💯
lazy_static
is no longer needed sinceRust 1.70.0
Edit
Changes have been made HERE to reduce memory usage and improve performance.
String
was changed toBox<str>
to reduce memory usage.constants.rs
now return a reference instead of a copy which reduces memory usage and improves performance.