mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-15 09:21:15 -03:00
These functions don't depend on `wcstringutil` functionality, so there is no need for them to be there. The advantage of putting them into our `widestring` crate is that quite a lot of code depends on it, and extracting some of that code would result in crate dependency cycles if the functions stayed in the `wcstringutil` crate. Our `widestring` crate does not depend on any of our other crates, so there won't be any cyclic dependency issues with code in it. Part of #12625