-
## steps
Make your project in build.sbt be anything else except `lazy val root = (project in file("."))`
## problem
sbt incorrectly sets scala version for builds.
This is evident by:
1.…
-
Here's a simplified scenario. Any insight would be greatly appreciated.
```scala
import com.github.plokhotnyuk.jsoniter_scala.core.*
import com.github.plokhotnyuk.jsoniter_scala.macros.*
trai…
-
## Compiler version
3.1.2
Compiles in 3.1.1
Fails in 3.1.3-RC3
Fails in 3.2.0-RC1-bin-20220517-e5abec0-NIGHTLY
## Minimized code
Failure found in the community build, needs minimization:
Mac…
-
Hey,
Actually i am using `jsoniter-scala` lib but i am having situation like this
```
val jsonString1 = """{"name": "foo", "id": "2604"}"""
val jsonString2 = """{"name": "bar", "id": 2105…
-
Hi,
Is there a way to completely skip the serialization of an optional class field with a default value ?
As an example,
say I have a class Foo:
```scala
case class Foo(
name…
-
### Motivation
Compile with Scala 3
### Identified Obstacles
- We will probably need to make some major bump of some libraries and fix the breaking changes.
- Some libraries have not yet been publ…
adpi2 updated
1 month ago
-
Current implementation relies on scala 2 annotation macros.
There is no way to generate new methods/objects with scala 3 macros, so the current approach is not applicable to scala 3.
Additionall…
-
Based on OpenCB failure in 2 projects:
- `jodersky/ustats` - [build logs](https://github.com/VirtusLab/community-build3/actions/runs/11346008381/job/31554796057)
- `rssh/dotty-cps-async` - [build l…
-
I am getting the an error when generating a mock for this:
```
case class Context[T](value: String)
@accessible
trait ServiceX {
def doSomething: RIO[Context[123], Unit]
}
@mockable[Ser…
-
Last year, I worked on a project called [Syncodia](https://github.com/pstutz/syncodia), where I explored using Scala classes/functions to specify JSON schemas and allow invoking functions seamlessly. …