-
Notifications
You must be signed in to change notification settings - Fork 25
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
docs update & bump to 0.12 #128
Conversation
Should we make the switch to std::fmt::Write before releasing? |
We already have |
Originally I meant "we should go all in on But now I'm starting to think the opposite and that maybe we should change all the new API's to use io::Write. The main sticking point for me: It seems like while I can stream WKT to a File (and friends) with io::Write, I can't do that with fmt::Write. I have to first build up the entire string in memory with the Fmt API and then write that entire string in one go. For big geometries, being able to buffer the writes out as you process seems like a better way to go. WDYT @kylebarron ? |
I think you can still stream WKT to Every call to It's mostly a little ugly that you lost the content of any |
You're right again!
I might see a way around this... after I wrap up some georust/geo stuff, I'll take a swing at it. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Anything else you want to include before releasing @kylebarron or anyone else?
Otherwise, I'll merge and release this tomorrow to give anybody else a final chance to weigh in.
It looks good to me! #125 would be nice to get to in the medium term, but I don't think it should block a release. |
CHANGES.md
if knowledge of this change could be valuable to users.