Reid Spencer

Results 16 comments of Reid Spencer

@phaller - Looking at this example @yigit provided, It is curious that the scala.Tuple2 at the top level seems to work fine but the Tuple2 as the value of the...

Another case important for me: java.net.URI. When compiling this: ``` scala implicit val URIPickler = Pickler.generate[URI] ``` I get: ``` exception during macro expansion: scala.pickling.PicklingException: No fields are captured. You...

@eed3si9n - Thanks for the explanation. Makes sense given the current state of the library. I've seen the sbt serialization project and it is what gave me the idea that...

@rmgk @SethTisue @davidrwood @lolgab - Maybe it is time to consider a fork of this repository? It seems abandoned, yet it is critical to a project I'm working on and...

@lihaoyi - Please add me as a committer. I'm highly invested in Fastparse and want to move the ball forward to Scala 3, so I may just take this on....

> @reid-spencer I have sent you an invite for write access to this repository Invitation accepted. Thank you. > The goal for Scala 3 support should be to get all...

FYI: You might want to look at [riddl](https://github.com/ossuminc/riddl), which defines bounded contexts, domains, adaptors (acls), message processors, and many other concepts via a textual language. It has a validating compiler...

@lattner - I understand the language earliness, but I think there's value in starting the Actor's project early. So, I have started already: https://github.com/ossuminc/moxy (extremely nascent). In the proposal, I've...

This occurs for me in another context: using `jlink` to minimize the JVM foot print for a command line tool. My tool only uses the java.base module, so I want...