I have two dependencies which pull in different libraries for UUID’s. I’ve tried picking one of these with override: true
in my mix.exs, but I think this would just override different versions of the same package, not different packages with overlapping modules.
1.193 * using config/runtime.exs to configure the release at runtime
1.615 ** (Mix) Duplicated modules:
1.615 'Elixir.UUIDv7' specified in uuid_v7 and uuidv7
Is there any way around this? My current plan is to fork one of the dependencies and move it to the other UUID lib.
Thanks!