Kev
05/27/2024, 5:46 AMarrow-core-high-arity
module as a dependency, the compiler doesn’t seem to understand what’s going on and throws a ton of errors like:
Unresolved reference: catch
Unresolved reference: raise
Unresolved reference: it
Unresolved reference: ensure
Unresolved reference: either
...
Kev
05/27/2024, 5:47 AMsimon.vergauwen
05/27/2024, 6:13 AMKev
05/27/2024, 6:34 AMlibs.versions.toml
driving my dependencies. The Arrow deps look like:
arrow-bom = { module = "io.arrow-kt:arrow-stack", version.ref = "arrow" }
arrow-core = { module = "io.arrow-kt:arrow-core" }
arrow-core-high-arity = { module = "io.arrow-kt:arrow-core-high-arity" }
arrow-fx-coroutines = { module = "io.arrow-kt:arrow-fx-coroutines" }
arrow-optics = { module = "io.arrow-kt:arrow-optics" }
and
[bundles]
arrow = [
"arrow-core",
"arrow-fx-coroutines",
"arrow-core-high-arity",
"arrow-optics"
]
and
implementation(platform(libs.arrow.bom))
implementation(libs.bundles.arrow)
Kev
05/27/2024, 6:35 AMsimon.vergauwen
05/30/2024, 12:56 PM