From a0e1dd04e54bce20dd99a300eef15fef46f50875 Mon Sep 17 00:00:00 2001 From: Jacky Nguyen Date: Sat, 14 Oct 2023 17:10:34 -0400 Subject: [PATCH] Update dependencies --- flake.lock | 14 +++++++------- project/Dependencies.scala | 14 +++++++------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/flake.lock b/flake.lock index dd6aef0..4af1c2f 100644 --- a/flake.lock +++ b/flake.lock @@ -26,16 +26,16 @@ "nixpkgs": "nixpkgs_3" }, "locked": { - "lastModified": 1697115637, - "narHash": "sha256-6TVDZrt8UhbhxZp3NyihFV5SZ+uPOPR0LwjZORmcPUk=", + "lastModified": 1697316411, + "narHash": "sha256-S8SH7k2KISISzgEdGeHbFC4Lwwxi52d8P1DYqCZX1h0=", "owner": "shopstic", "repo": "nix-fdb", - "rev": "7b88718ce165606893eea53b90674d57c7306ce0", + "rev": "fea7efdb1f070cbdcaf0504a23479befffa9c6a5", "type": "github" }, "original": { "owner": "shopstic", - "ref": "7.1.37-3", + "ref": "7.1.41", "repo": "nix-fdb", "type": "github" } @@ -262,11 +262,11 @@ "npmlock2nixPkg": "npmlock2nixPkg_2" }, "locked": { - "lastModified": 1697117209, - "narHash": "sha256-gCaPAPXBt4xE0j9xYXls9UNoDfl3zWlhwlwo7bkIeG4=", + "lastModified": 1697317328, + "narHash": "sha256-ThwupGuUN8owLcfUZgCj6NssaUWrQh72c+5CnjLMmGU=", "owner": "shopstic", "repo": "nix-hot-pot", - "rev": "52ac72ffd2038c69879118437a84920b5f105411", + "rev": "3d13287e2fe59d05b27bc8cd83f7602630d43fec", "type": "github" }, "original": { diff --git a/project/Dependencies.scala b/project/Dependencies.scala index cd27a62..de935d3 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -2,7 +2,7 @@ import sbt._ //noinspection TypeAnnotation object Dependencies { - val CHOPSTICKS_VERSION = "3.10.0+717-3ce5b2d-SNAPSHOT" + val CHOPSTICKS_VERSION = "3.12.0+756-19425e8-SNAPSHOT" val ZIO_VERSION = "1.0.14" lazy val akkaGrpcRuntimeDeps = Seq( @@ -10,7 +10,7 @@ object Dependencies { ) lazy val betterFilesDeps = Seq( - "com.github.pathikrit" %% "better-files" % "3.9.1" + "com.github.pathikrit" %% "better-files" % "3.9.2" ) lazy val chopsticksKvdbCodecFdbKeyDeps = Seq( @@ -50,12 +50,12 @@ object Dependencies { ) lazy val jsoniterDeps = Seq( - "com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-core" % "2.17.2", - "com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-macros" % "2.17.2" % "provided" + "com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-core" % "2.21.3", + "com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-macros" % "2.21.3" % "provided" ) lazy val pureconfigEnumeratumDeps = Seq( - "com.github.pureconfig" %% "pureconfig-enumeratum" % "0.17.1" + "com.github.pureconfig" %% "pureconfig-enumeratum" % "0.17.2" ) lazy val quicklensDeps = Seq( @@ -67,7 +67,7 @@ object Dependencies { ) lazy val pprintDeps = Seq( - "com.lihaoyi" %% "pprint" % "0.7.3" + "com.lihaoyi" %% "pprint" % "0.8.1" ) lazy val scalaXmlDeps = Seq( @@ -103,6 +103,6 @@ object Dependencies { ) lazy val airframeUlidDeps = Seq( - "org.wvlet.airframe" %% "airframe-ulid" % "22.9.2" + "org.wvlet.airframe" %% "airframe-ulid" % "23.3.0" ) }