mushtaq
mushtaq
@alexarchambault It does not work on MacOS. I get this error: ```txt Exception in thread "main" java.net.URISyntaxException: Illegal character in path at index 46: file:///Users/mushtaqahmed/Library/Application Support/Coursier/bin/coursier at java.base/java.net.URI$Parser.fail(URI.java:2913) at java.base/java.net.URI$Parser.checkChars(URI.java:3084)...
@jrudolph Any way of trying out akka-http snapshot artifacts for scala-3?
How about using `dep` instead of `tracked val`? ```scala class D(dep x: C) { type T = x.T } ```
> `dep` is too cryptic as a name --- a full word is better. `dependent` has been discussed [before](https://github.com/lampepfl/dotty/issues/3920#issuecomment-360779916) --- `tracked` is shorter and nicer. `dep` is [adopted by scala-cli](https://scala-cli.virtuslab.org/docs/reference/directives/#dependency)...
> With thy support for JSON Schema and more, Thou art a library that developers adore. JSON Schema support? Is this real or the poet is hallucinating?
This is one of the most important PR that unblocks our projects for scala-3 migration Thanks @cchantep and @lloydmeta for all the work 👍 !
> Finally finished making my way through. Overall, LGTM I was testing this PR to see if I can migrate my existing usage of enumeratum to the scala-3 version and...
Issue-1 ------- ```scala //> using scala "3.2.1" //> using repository "jitpack" //> using lib "com.github.mushtaq.enumeratum::enumeratum:be1c8d6" import enumeratum.{Enum, EnumEntry} import scala.collection.immutable sealed trait Base extends EnumEntry class Derived extends Base object...
Issue-2 -------- ```scala //> using scala "3.2.1" //> using repository "jitpack" //> using lib "com.github.mushtaq.enumeratum::enumeratum:be1c8d6" import enumeratum.{Enum, EnumEntry} import scala.collection.immutable sealed trait Base extends EnumEntry object Base extends Enum[Base] {...
These are self contained scala-cli scripts which work with scala 2.13 and current published version of enumeratum. The artifact referred in the script is jitpack published from a [fork of...