Skip to content

Commit 3e9bf8f

Browse files
committed
[Chore] Update dependencies
1 parent d53956a commit 3e9bf8f

File tree

7 files changed

+47
-103
lines changed

7 files changed

+47
-103
lines changed

.idea/modules.xml

-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules/archon.iml

+42-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules/archon.main.iml

-36
This file was deleted.

.idea/modules/archon.test.iml

-55
This file was deleted.

.idea/scala_compiler.xml

+1-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.sbt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Global / onChangedBuildSource := ReloadOnSourceChanges
22
ThisBuild / version := "0.1.0-SNAPSHOT"
33

4-
ThisBuild / scalaVersion := "3.5.1"
4+
ThisBuild / scalaVersion := "3.5.2"
55

66
lazy val root = (project in file("."))
77
.settings(
@@ -20,8 +20,8 @@ lazy val root = (project in file("."))
2020
"org.scalatest" %% "scalatest" % "3.2.19" % "test",
2121
"com.lihaoyi" %% "pprint" % "0.9.0",
2222
"com.lihaoyi" %% "fastparse" % "3.1.1",
23-
"com.lihaoyi" %% "os-lib" % "0.10.7",
24-
"org.scala-lang.modules" %% "scala-collection-contrib" % "0.3.0",
23+
"com.lihaoyi" %% "os-lib" % "0.11.3",
24+
"org.scala-lang.modules" %% "scala-collection-contrib" % "0.4.0",
2525
),
2626
Compile / unmanagedJars += {
2727
baseDirectory.value / "unmanaged" / "scalaz3_3-4.8.14-macos-aarch64.jar"

src/main/scala/com/github/tgeng/archon/core/ir/signatureTyping.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import com.github.tgeng.archon.core.common.*
77
import com.github.tgeng.archon.core.ir
88
import com.github.tgeng.archon.core.ir.CTerm.*
99
import com.github.tgeng.archon.core.ir.Declaration.*
10-
import com.github.tgeng.archon.core.ir.EscapeStatus.{EsLocal, EsReturned, EsUnknown}
10+
import com.github.tgeng.archon.core.ir.EscapeStatus.{EsLocal, EsUnknown}
1111
import com.github.tgeng.archon.core.ir.IrError.*
1212
import com.github.tgeng.archon.core.ir.PrettyPrinter.pprint
1313
import com.github.tgeng.archon.core.ir.Usage.*

0 commit comments

Comments
 (0)