2024-07-20 20:43:20 +08:00
|
|
|
name := "minisql"
|
|
|
|
|
2025-06-19 18:49:14 +08:00
|
|
|
scalaVersion := "3.7.1"
|
2024-07-20 20:43:20 +08:00
|
|
|
|
|
|
|
libraryDependencies ++= Seq(
|
2024-12-15 21:11:14 +08:00
|
|
|
"org.scalameta" %% "munit" % "1.0.3" % Test
|
2024-07-20 20:43:20 +08:00
|
|
|
)
|
2025-06-19 18:49:14 +08:00
|
|
|
|
|
|
|
scalacOptions ++= Seq(
|
|
|
|
"-deprecation",
|
|
|
|
"-feature",
|
|
|
|
"-source:3.7-migration",
|
|
|
|
"-rewrite"
|
|
|
|
)
|