-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
21 lines (18 loc) · 844 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import Dependencies._
ThisBuild / scalaVersion := "2.13.6"
ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / organization := "com.example"
ThisBuild / organizationName := "example"
lazy val root = (project in file("."))
.settings(
name := "twisty-groups",
libraryDependencies += "org.typelevel" %% "cats-core" % "2.2.0",
libraryDependencies += "org.typelevel" %% "spire" % "0.17.0-M1",
libraryDependencies += scalaTest % Test,
)
connectInput/run := true
initialCommands/console := """|import perms._
|import cats.kernel.Group, cats.syntax.group._
|import twistygroups._, cube.algs._, cube.model.CubeState.id
|implicit val random = new scala.util.Random
|""".stripMargin