fitzgen / inlinable_string

An owned, grow-able UTF-8 string that stores small strings inline and avoids heap-allocation.
http://fitzgen.github.io/inlinable_string/inlinable_string/index.html
Other
69 stars 11 forks source link

Put tests into test/ and benchmarks into benches/ #3

Open llogiq opened 8 years ago

llogiq commented 8 years ago

This lets you get away without all those pesky #[cfg(..)]s, make your compile a tiny bit faster and nightly will pick up your tests and benchmarks as it should. :smile:

fitzgen commented 8 years ago

Thanks for the tip!