05nelsonm / encoding

A Kotlin Multiplatform library for configurable, streamable, efficient and extensible Encoding/Decoding with support for base16/32/64.
Apache License 2.0
33 stars 5 forks source link

`JPMS` modules should use `transitive` for core #145

Open 05nelsonm opened 4 months ago

05nelsonm commented 4 months ago

Higher level API's base16, base32, and base64 should use requires transitive for core module dependency

05nelsonm commented 4 months ago

I actually don't think this is necessary, as transitive will only provide readability of core, not accessibility. Users of encoding will still have to declare requires io.matthewnelson.encoding.core;