RustAudio / rust-lv2

A safe, fast, and modular framework to create LV2 plugins, written in Rust
Apache License 2.0
171 stars 23 forks source link

Replace regex usage by function from std #78

Closed YruamaLairba closed 4 years ago

YruamaLairba commented 4 years ago

I tried to remove regex from dependency graph to reduce compilation time. On my computer, It take 26s instead 38 in debug and 1min14 instead 1min54. More than 30% of time-saving.

YruamaLairba commented 4 years ago

i was a bit confused by escaping sequence ;) I just see string litteral like r#"raw string"# aren't handled and i don't know how to do it.