mirror of https://github.com/sbt/sbt.git
[2.x] sjson-new 0.15.0
This commit is contained in:
parent
c1219702d5
commit
f327ef14d0
|
|
@ -409,7 +409,7 @@ lazy val hashBenchmark = (project in file("internal") / "hash-benchmark")
|
|||
utilCommonSettings,
|
||||
name := "Hash Benchmark",
|
||||
Jmh / run / javaOptions ++= Seq("-Xmx1G", "-Dfile.encoding=UTF8"),
|
||||
libraryDependencies += blake3,
|
||||
libraryDependencies ++= Seq(blake3, zeroAllocationHashing),
|
||||
mimaSettings,
|
||||
publish / skip := true,
|
||||
)
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ import sbt.io.syntax.*
|
|||
import sbt.util.Digest
|
||||
import scala.util.Using
|
||||
import org.openjdk.jmh.annotations.*
|
||||
import pt.kcry.blake3.{ Blake3 as Blake3Impl }
|
||||
import pt.kcry.blake3.Blake3 as Blake3Impl
|
||||
|
||||
@State(Scope.Benchmark)
|
||||
abstract class AbstractFileHashBenchmark:
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@ object Dependencies {
|
|||
def addSbtZinc = addSbtModule(sbtZincPath, "zinc", zinc)
|
||||
def addSbtZincCompileCore = addSbtModule(sbtZincPath, "zincCompileCore", zincCompileCore)
|
||||
|
||||
lazy val sjsonNewVersion = "0.14.0"
|
||||
lazy val sjsonNewVersion = "0.15.0"
|
||||
def sjsonNew(n: String) = Def.setting(
|
||||
"com.eed3si9n" %% n % sjsonNewVersion
|
||||
) // contrabandSjsonNewVersion.value
|
||||
|
|
|
|||
Loading…
Reference in New Issue