Adam Lesperance
Adam Lesperance
🤔 hmm interesting. Good catch that it was using the older `3.1.3` library even though I was specifying `3.4.1`. I guess I thought it was possible to use old scala...
Oh I read your message too fast. Okay so the dependency list is the same in both cases so I don't think that's it? Are there some changes I need...
Okay so I played with the build.sbt a bit and here are my findings: ``` val sVersion = "3.4.1" lazy val root = project .in(file(".")) .settings( name := "sbt10issue", version...
Yeah that's basically my use case I guess I should have been more clear about that from the get-go. Sounds good if you can figure out an elegant way to...
Since this is hand rolling the json impl it isn't properly escaping invalid characters. For example a filename that has a quote in it produces invalid json.
You'll probably have better luck with https://github.com/jqnatividad/qsv/ -- this hasn't been updated in over 6 years.
I started looking at this, and it seems the solution to catch this and future/other problems would be to modify the `Credentials` constructor so that itseld throws a `ProviderException` if...
I've used https://pkg.go.dev/github.com/icub3d/gop/wrapio
Good to know, thanks for the tip!
I played around with this some more and I actually got the best performance with this wrapper, the key being to impl the `Size() int64` method. ```go type HashReader struct...