Skip to content
This repository has been archived by the owner on Jun 16, 2024. It is now read-only.

Commit

Permalink
build.sbt: scala 2.13.14, explicit commons-io dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
kivikakk committed Jun 5, 2024
1 parent a0d2bc8 commit d54d83b
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ThisBuild / scalaVersion := "2.13.12"
ThisBuild / scalaVersion := "2.13.14"
ThisBuild / version := "0.1.1-SNAPSHOT"
ThisBuild / versionScheme := Some("early-semver")
ThisBuild / homepage := Some(url("https://github.com/chryse-hdl/chryse"))
Expand All @@ -11,10 +11,11 @@ lazy val root = (project in file("."))
.settings(
name := "chryse",
libraryDependencies ++= Seq(
"org.chipsalliance" %% "chisel" % chiselVersion,
"org.scalatest" %% "scalatest" % "3.2.18" % "test",
"org.rogach" %% "scallop" % "5.1.0",
"com.lihaoyi" %% "upickle" % "3.1.0",
"org.chipsalliance" %% "chisel" % chiselVersion,
"org.scalatest" %% "scalatest" % "3.2.18" % "test",
"org.rogach" %% "scallop" % "5.1.0",
"com.lihaoyi" %% "upickle" % "3.1.0",
"commons-io" % "commons-io" % "2.16.1",
),
scalacOptions ++= Seq(
"-language:reflectiveCalls", "-deprecation", "-feature", "-Xcheckinit",
Expand Down

0 comments on commit d54d83b

Please sign in to comment.