eugene yokota

Results 741 comments of eugene yokota

@ddl-sacuna Thanks for the report! I think this is a bug, but it might be tricky to fix if it's somewhere deeply rooted in layered classloader logic or something because...

@panbingkun Thanks for the report. Please see https://www.scala-sbt.org/1.x/docs/GitHub-Actions-with-sbt.html#Caching for the recommendation on setting up the cache for GitHub Actions. In general I would recommend against the use of `Resolver.mavenLocal` if...

Would adding ```scala Test / fork := true ``` change the result?

See also https://github.com/sbt/sbt/issues/2695. On Windows batch, equal sign `=` I think is treated as whitespace.

Try `val eval = "com.eed3si9n.eval" % "eval_3.2.0" % "0.2.0"` or `("com.eed3si9n.eval" % "eval" % "0.2.0").cross(CrossVersion.full)`

See the last example in https://eed3si9n.com/eval/. `Eval()` by default takes the current classpath - https://github.com/eed3si9n/eval/blob/fc91162462f155567211ff5d70b221678db6febc/src/main/scala-3/com/eed3si9n/eval/Eval.scala#L268-L269, so you should be able to define an object with the bindings and import the...

Here's what I mean: ### build.sbt ```scala ThisBuild / scalaVersion := "3.2.0" libraryDependencies += ("com.eed3si9n.eval" % "eval" % "0.2.0").cross(CrossVersion.full) run / fork := true ``` ### Test.scala ```scala import com.eed3si9n.eval.Eval...

@zainab-ali Great idea. Potentially something we can get inspiration from are: - [The Rust Edition Guide](https://doc.rust-lang.org/edition-guide/)

The point of having Toolkit is to be batteries-included for day-to-day operation, like parsing JSON a la Python, and hopefully set the new and experienced users on the paved path...