Deprecation Warning: use Bitwise
Problem
warning: use Bitwise is deprecated. import Bitwise instead
lib/uuid.ex:2: UUID (module)
Location
# lib/uuid.ex
use Bitwise, only_operators: true
Fix
Replace with:
Optionally restrict to:
import Bitwise, only: [&&&: 2, |||: 2, >>>: 2, <<</2, ^^^: 2, ~~~: 1]
Request
Please update the library to remove this warning.
Thanks!