-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replace fmt lib with C++20 std::format #474
Conversation
Eager string generation instead of on-demand view
What do you think about this polyfill approach? https://stackoverflow.com/a/66989192 |
I don't think it's worth it. The main benefit of using std::format over fmt lib is a minor reduction of dependencies and the associated complexity. Trying to maintain both simultaneously would only make things worse in that aspect. As far as dependencies go, fmt lib is very unproblematic. I think keeping it around a little longer is totally fine. |
The question is, should this just be closed and reopened when it's possible to do so or should it kick around as a permanent draft PR? |
is_comma_separated_string is part of zerebubuth#474 and not yet merged
Merging is not possible yet because
std::format
requires GCC 13, which is not available in current Debian stable.Closes #469