juno
juno copied to clipboard
Split up the `utils` package
For example, we can have small network
and log
packages.
Two benefits:
- Clarity. Better to avoid ambiguous package names like
common
,utils
,pkg
, etc. - Dependency management. A user may depend on a package that only uses
utils/log
andutils/network
, but that user will have the fullutils
package compiled into the binary.