elixir-uuid icon indicating copy to clipboard operation
elixir-uuid copied to clipboard

UUID generator and utilities for Elixir

Results 25 elixir-uuid issues
Sort by recently updated
recently updated
newest added

It seems that `UUID.info/1` parses every numeric string with length 16 as uuid. elixir-uuid version 1.2.1: ```elixir UUID.info("0000000000000000") {:ok, [ uuid: "0000000000000000", binary: "0000000000000000", type: :raw, version: 3, variant: :reserved_ncs...

Would be nice to make the new `:slug` feature available in its own function, e.g. `UUID.string_to_slug!("870df8e8-3107-4487-8316-81e089b8c2cf")` and `UUID.slug_to_string!("")` Readme should be updated accordingly.

enhancement

Hi, Elixir deprecated `use Bitwise` (in favor of `import Bitwise`), which results in warnings when compiling uuid. It looks like `use Bitwise` can be entirely deleted. I also updated deps.

For [hacking contest reasons](https://nautilus.institute/blog/2023/raw-water/), I want to be able to generate the same UUIDs from a seed multiple times.