From fc8a6626930366a45dbc309935e8fd4905cd4f78 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Sep 2024 17:57:20 +0000 Subject: [PATCH] Bump org.yaml:snakeyaml from 2.2 to 2.3 Bumps [org.yaml:snakeyaml](https://bitbucket.org/snakeyaml/snakeyaml) from 2.2 to 2.3. - [Commits](https://bitbucket.org/snakeyaml/snakeyaml/branches/compare/snakeyaml-2.3..snakeyaml-2.2) --- updated-dependencies: - dependency-name: org.yaml:snakeyaml dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- parser/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser/build.gradle.kts b/parser/build.gradle.kts index ef54005..cc1e455 100644 --- a/parser/build.gradle.kts +++ b/parser/build.gradle.kts @@ -21,7 +21,7 @@ kotlin { api(libs.json) // This should be KAML, but parsing OpenAI takes 57seconds // Compared to 100ms with SnakeYAML - implementation("org.yaml:snakeyaml:2.2") + implementation("org.yaml:snakeyaml:2.3") } } jvmTest { dependencies { implementation(libs.test) } }