diff options
author | EuAndreh <eu@euandre.org> | 2025-05-07 07:02:57 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-05-07 07:16:33 -0300 |
commit | d3cb41376ac0be31ed2b6649dd8d6b42674ebeaf (patch) | |
tree | df7eeb84a91114b6624a0f0fe7c1b11fa7e5ae1f /deps.mk | |
parent | tests/{cli-opts,integration}.sh: Add test implementations (diff) | |
download | uuid-d3cb41376ac0be31ed2b6649dd8d6b42674ebeaf.tar.gz uuid-d3cb41376ac0be31ed2b6649dd8d6b42674ebeaf.tar.xz |
Support UUIDv7, with -vN for choosing
Diffstat (limited to 'deps.mk')
-rw-r--r-- | deps.mk | 27 |
1 files changed, 18 insertions, 9 deletions
@@ -3,7 +3,8 @@ libs.go = \ tests/benchmarks/string-roundtrip/uuid.go \ tests/functional/string-round-trip/uuid.go \ tests/fuzz/from-string/uuid.go \ - tests/fuzz/new-from/uuid.go \ + tests/fuzz/new-v4-from/uuid.go \ + tests/fuzz/new-v7-from/uuid.go \ tests/uuid.go \ mains.go = \ @@ -11,7 +12,8 @@ mains.go = \ tests/benchmarks/string-roundtrip/main.go \ tests/functional/string-round-trip/main.go \ tests/fuzz/from-string/main.go \ - tests/fuzz/new-from/main.go \ + tests/fuzz/new-v4-from/main.go \ + tests/fuzz/new-v7-from/main.go \ tests/main.go \ manpages.N.adoc = \ @@ -30,11 +32,13 @@ functional-tests/main.go = \ fuzz-targets/lib.go = \ tests/fuzz/from-string/uuid.go \ - tests/fuzz/new-from/uuid.go \ + tests/fuzz/new-v4-from/uuid.go \ + tests/fuzz/new-v7-from/uuid.go \ fuzz-targets/main.go = \ tests/fuzz/from-string/main.go \ - tests/fuzz/new-from/main.go \ + tests/fuzz/new-v4-from/main.go \ + tests/fuzz/new-v7-from/main.go \ benchmarks/lib.go = \ tests/benchmarks/string-roundtrip/uuid.go \ @@ -50,25 +54,30 @@ tests/functional/string-round-trip/main.a: tests/functional/string-round-trip/ma tests/functional/string-round-trip/uuid.a: tests/functional/string-round-trip/uuid.go tests/fuzz/from-string/main.a: tests/fuzz/from-string/main.go tests/fuzz/from-string/uuid.a: tests/fuzz/from-string/uuid.go -tests/fuzz/new-from/main.a: tests/fuzz/new-from/main.go -tests/fuzz/new-from/uuid.a: tests/fuzz/new-from/uuid.go +tests/fuzz/new-v4-from/main.a: tests/fuzz/new-v4-from/main.go +tests/fuzz/new-v4-from/uuid.a: tests/fuzz/new-v4-from/uuid.go +tests/fuzz/new-v7-from/main.a: tests/fuzz/new-v7-from/main.go +tests/fuzz/new-v7-from/uuid.a: tests/fuzz/new-v7-from/uuid.go tests/main.a: tests/main.go tests/uuid.a: tests/uuid.go src/main.bin: src/main.a tests/benchmarks/string-roundtrip/main.bin: tests/benchmarks/string-roundtrip/main.a tests/functional/string-round-trip/main.bin: tests/functional/string-round-trip/main.a tests/fuzz/from-string/main.bin: tests/fuzz/from-string/main.a -tests/fuzz/new-from/main.bin: tests/fuzz/new-from/main.a +tests/fuzz/new-v4-from/main.bin: tests/fuzz/new-v4-from/main.a +tests/fuzz/new-v7-from/main.bin: tests/fuzz/new-v7-from/main.a tests/main.bin: tests/main.a src/main.bin-check: src/main.bin tests/benchmarks/string-roundtrip/main.bin-check: tests/benchmarks/string-roundtrip/main.bin tests/functional/string-round-trip/main.bin-check: tests/functional/string-round-trip/main.bin tests/fuzz/from-string/main.bin-check: tests/fuzz/from-string/main.bin -tests/fuzz/new-from/main.bin-check: tests/fuzz/new-from/main.bin +tests/fuzz/new-v4-from/main.bin-check: tests/fuzz/new-v4-from/main.bin +tests/fuzz/new-v7-from/main.bin-check: tests/fuzz/new-v7-from/main.bin tests/main.bin-check: tests/main.bin src/main.a: src/$(NAME).a tests/benchmarks/string-roundtrip/main.a: tests/benchmarks/string-roundtrip/$(NAME).a tests/functional/string-round-trip/main.a: tests/functional/string-round-trip/$(NAME).a tests/fuzz/from-string/main.a: tests/fuzz/from-string/$(NAME).a -tests/fuzz/new-from/main.a: tests/fuzz/new-from/$(NAME).a +tests/fuzz/new-v4-from/main.a: tests/fuzz/new-v4-from/$(NAME).a +tests/fuzz/new-v7-from/main.a: tests/fuzz/new-v7-from/$(NAME).a tests/main.a: tests/$(NAME).a |