rutrum
rutrum
I'd like to work on this issue. I think I can try and add copy/pasting functionality first by first selecting files and then using Y to yank them and P...
Sorry @willeccles I might have bitten off more than I can chew with this one. I haven't had success. I don't think I have the C experience just yet to...
 This image describes what I meant by "equally sized grid".
Can you give me an example of what you mean by this? That is, can you write some rust code explaining your use case?
I'm still not totally following exactly the request, but I am welcome to make changes to decrease the number or allocations needed to do the conversion. Since you are looking...
I've just formally published version 0.5.0 version of this crate, which reflects the current state of the master branch of this repository. Check these most recent docs: https://docs.rs/convert_case/0.5.0/convert_case/index.html `Converter` should...
Hi, breaking changes were not intended, so thank you for bringing this to my attention. I rewrote the trait implementation for `Casing`. You can see a major change in this...
This panics when splitting the string into segments. The method I wrote uses the `str::chars` method which didn't iterate over characters in a way I had first thought. It describes...
My first thoughts are introducing unicode-segmentation as a feature, to still allow a simple, no dependency library that works on ASCII strings reliably (and many other strings, but not all...
I have added `unicode-segmentation` as a dependency, and added a test which specifically address the string you provided. The newest version, `convert-case` version 0.6.0 fixes this issue. https://github.com/rutrum/convert-case/blob/a8702a05217664ca59cb7471df68a91dcf4b91ee/src/lib.rs#L657-L660