Add a simple module for totps

This is a wrapper around the nice and minimal java-otp library [0].

[0] https://github.com/jchambers/java-otp
This commit is contained in:
eikek
2021-08-29 21:27:56 +02:00
parent 60c5120785
commit 2b46cc7970
10 changed files with 434 additions and 1 deletions

View File

@ -21,6 +21,7 @@ object Dependencies {
val H2Version = "1.4.200"
val Http4sVersion = "0.23.1"
val Icu4jVersion = "69.1"
val javaOtpVersion = "0.3.0"
val JsoupVersion = "1.14.2"
val KindProjectorVersion = "0.10.3"
val KittensVersion = "2.3.2"
@ -36,6 +37,7 @@ object Dependencies {
val PostgresVersion = "42.2.23"
val PureConfigVersion = "0.16.0"
val ScalaJavaTimeVersion = "2.3.0"
val ScodecBitsVersion = "1.1.27"
val Slf4jVersion = "1.7.32"
val StanfordNlpVersion = "4.2.2"
val TikaVersion = "2.1.0"
@ -46,6 +48,14 @@ object Dependencies {
val JQueryVersion = "3.5.1"
val ViewerJSVersion = "0.5.9"
val scodecBits = Seq(
"org.scodec" %% "scodec-bits" % ScodecBitsVersion
)
val javaOtp = Seq(
"com.eatthepath" % "java-otp" % "0.3.0"
)
val testContainer = Seq(
"com.dimafeng" %% "testcontainers-scala-munit" % TestContainerVersion,
"com.dimafeng" %% "testcontainers-scala-mariadb" % TestContainerVersion,