From dbd169aa1a03d3d42277eeccc7a998f2d5c35a5a Mon Sep 17 00:00:00 2001 From: Graham Date: Thu, 1 Apr 2021 22:51:38 +0100 Subject: [PATCH] Make fastutil part of the cache library's API The group unpacking code exposes a fastutil type. (In the long run this might be replaced with an array, allowing us to revert this commit or drop the fastutil dependency entirely.) Signed-off-by: Graham --- cache/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cache/build.gradle.kts b/cache/build.gradle.kts index 15ebefc3..5d1cbd00 100644 --- a/cache/build.gradle.kts +++ b/cache/build.gradle.kts @@ -7,11 +7,11 @@ dependencies { api(project(":crypto")) api("com.google.inject:guice:${Versions.guice}") api("io.netty:netty-buffer:${Versions.netty}") + api("it.unimi.dsi:fastutil:${Versions.fastutil}") implementation(project(":buffer")) implementation(project(":compress")) implementation(project(":util")) - implementation("it.unimi.dsi:fastutil:${Versions.fastutil}") testImplementation("com.google.jimfs:jimfs:${Versions.jimfs}") }