Panic caused by wrong use of smallstring
Problem
smallstring::String::with_capacity(0)
causes a panic. This could happen at eg. Using a method with empty parameter:
let x = [@split("a.b.c", )]
Quick solution
Update codebase to at least allocate empty strings with capacity of 1.