expression_engine_rs
expression_engine_rs copied to clipboard
Switch from `std::sync::Mutex` to `parking_lot::Mutex`
parking_lot is great. Its implementations of the sync types are both easier to use, and usually faster. Switching to parking lot types will reduce the need to handle Results on Mutexes, and will likely result in a free performance boost.