Simplify Mirror Codec

This commit is contained in:
jilen 2025-06-19 18:49:14 +08:00
parent 1bc6baad68
commit 17e97495b7
17 changed files with 275 additions and 112 deletions

View file

@ -1,7 +1,14 @@
name := "minisql"
scalaVersion := "3.7.0"
scalaVersion := "3.7.1"
libraryDependencies ++= Seq(
"org.scalameta" %% "munit" % "1.0.3" % Test
)
scalacOptions ++= Seq(
"-deprecation",
"-feature",
"-source:3.7-migration",
"-rewrite"
)