mirror of
https://github.com/fluencelabs/crypto
synced 2025-04-25 06:42:19 +00:00
Updated dependencies (#5)
This commit is contained in:
parent
fcf7e08813
commit
e9b1e2d905
@ -14,7 +14,7 @@ val scalaV = scalaVersion := "2.12.8"
|
|||||||
|
|
||||||
val commons = Seq(
|
val commons = Seq(
|
||||||
scalaV,
|
scalaV,
|
||||||
version := "0.0.3",
|
version := "0.0.4",
|
||||||
fork in Test := true,
|
fork in Test := true,
|
||||||
parallelExecution in Test := false,
|
parallelExecution in Test := false,
|
||||||
organization := "one.fluence",
|
organization := "one.fluence",
|
||||||
@ -31,7 +31,7 @@ val commons = Seq(
|
|||||||
|
|
||||||
commons
|
commons
|
||||||
|
|
||||||
val CodecV = "0.0.4"
|
val CodecV = "0.0.5"
|
||||||
|
|
||||||
val CatsEffectV = "1.2.0"
|
val CatsEffectV = "1.2.0"
|
||||||
|
|
||||||
@ -39,7 +39,7 @@ val SloggingV = "0.6.1"
|
|||||||
|
|
||||||
val ScalatestV = "3.0.+"
|
val ScalatestV = "3.0.+"
|
||||||
|
|
||||||
val bouncyCastle = "org.bouncycastle" % "bcprov-jdk15on" % "1.60"
|
val bouncyCastle = "org.bouncycastle" % "bcprov-jdk15on" % "1.61"
|
||||||
|
|
||||||
enablePlugins(AutomateHeaderPlugin)
|
enablePlugins(AutomateHeaderPlugin)
|
||||||
|
|
||||||
@ -93,7 +93,6 @@ lazy val `crypto-hashsign` = crossProject(JVMPlatform, JSPlatform)
|
|||||||
.settings(
|
.settings(
|
||||||
commons,
|
commons,
|
||||||
libraryDependencies ++= Seq(
|
libraryDependencies ++= Seq(
|
||||||
"biz.enef" %%% "slogging" % SloggingV,
|
|
||||||
"org.scalatest" %%% "scalatest" % ScalatestV % Test
|
"org.scalatest" %%% "scalatest" % ScalatestV % Test
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
@ -126,6 +125,7 @@ lazy val `crypto-cipher` = crossProject(JVMPlatform, JSPlatform)
|
|||||||
.settings(
|
.settings(
|
||||||
commons,
|
commons,
|
||||||
libraryDependencies ++= Seq(
|
libraryDependencies ++= Seq(
|
||||||
|
"biz.enef" %%% "slogging" % SloggingV,
|
||||||
"org.scalatest" %%% "scalatest" % ScalatestV % Test
|
"org.scalatest" %%% "scalatest" % ScalatestV % Test
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
@ -88,7 +88,7 @@ object CryptoJwt {
|
|||||||
|
|
||||||
private val alphabet = Bases.Alphabets.Base64Url
|
private val alphabet = Bases.Alphabets.Base64Url
|
||||||
|
|
||||||
private val strVec = BitsCodecs.base64AlphabetToVector(alphabet).swap
|
private val strVec = BitsCodecs.Base64.alphabetToVector(alphabet).swap
|
||||||
|
|
||||||
val signatureCodec: PureCodec[Signature, String] =
|
val signatureCodec: PureCodec[Signature, String] =
|
||||||
PureCodec.liftB[Signature, ByteVector](_.sign, Signature(_)) andThen strVec
|
PureCodec.liftB[Signature, ByteVector](_.sign, Signature(_)) andThen strVec
|
||||||
|
@ -69,7 +69,7 @@ object KeyStore {
|
|||||||
)
|
)
|
||||||
|
|
||||||
// ByteVector to/from String, with the chosen alphabet
|
// ByteVector to/from String, with the chosen alphabet
|
||||||
private val vecToStr = BitsCodecs.base64AlphabetToVector(alphabet).swap
|
private val vecToStr = BitsCodecs.Base64.alphabetToVector(alphabet).swap
|
||||||
|
|
||||||
implicit val keyPairJsonCodec: PureCodec[KeyPair, Json] =
|
implicit val keyPairJsonCodec: PureCodec[KeyPair, Json] =
|
||||||
PureCodec.liftB[KeyPair, (ByteVector, ByteVector)](
|
PureCodec.liftB[KeyPair, (ByteVector, ByteVector)](
|
||||||
|
@ -1,14 +1,14 @@
|
|||||||
addSbtPlugin("com.geirsson" % "sbt-scalafmt" % "1.5.1")
|
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.0.0")
|
||||||
|
|
||||||
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.3.15")
|
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.3.20")
|
||||||
|
|
||||||
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.0.0")
|
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.2.0")
|
||||||
|
|
||||||
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.26")
|
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.27")
|
||||||
addSbtPlugin("org.portable-scala" % "sbt-crossproject" % "0.6.0")
|
addSbtPlugin("org.portable-scala" % "sbt-crossproject" % "0.6.0")
|
||||||
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "0.6.0")
|
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "0.6.0")
|
||||||
|
|
||||||
addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.13.1")
|
addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.14.0")
|
||||||
|
|
||||||
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.9.2")
|
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.9.2")
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user