This is technically a breaking change because SHOULD_COLORIZE used to be public a static var, and now it's a function.
If this is not acceptable, the other variant would be to use the once_cell crate which provides Lazy which is more similar to how lazy_static was working. This API is unstable in std at the moment.
Solves #163
This is technically a breaking change because
SHOULD_COLORIZE
used to be public a static var, and now it's a function.If this is not acceptable, the other variant would be to use the
once_cell
crate which provides Lazy which is more similar to howlazy_static
was working. This API is unstable in std at the moment.