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 <gpe@openrs2.org>
pull/132/head
Graham 3 years ago
parent da3cc57b3f
commit dbd169aa1a
  1. 2
      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}")
}

Loading…
Cancel
Save