zonyitoo / rust-ini

INI file parser in Rust
MIT License
298 stars 76 forks source link

Avoid reallocating for trimming #124

Closed GnomedDev closed 6 months ago

GnomedDev commented 6 months ago

Replaces the inefficient .trim().to_owned() with a small dependency which doesn't reallocate.