|
|
|
|
|
by TheGrassyKnoll
1896 days ago
|
|
Thanks for the code snippet, however (kind of a Rust newbie here) $ cargo install unicode_segmentation (chokes)
$ cargo install unicode-segmentation (seems to work)
and in Cargo.toml
[dependencies]
unicode-segmentation = "1.7.1" (seems to work)
yet in the code, its:
use unicode_segmentation::UnicodeSegmentation;
Why couldn't they be consistent using a dash vs. an underscore ?
|
|