From d2bdac8b2f154d3d070833ffa8dca7e021c00908 Mon Sep 17 00:00:00 2001 From: Robby Zambito Date: Mon, 10 Mar 2025 18:39:28 -0400 Subject: Initial commit 1.0.0 --- go.mod | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 go.mod (limited to 'go.mod') diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..abfef5e --- /dev/null +++ b/go.mod @@ -0,0 +1,19 @@ +module git.robbyzambito.me/nats-make-id/v2 + +go 1.23.5 + +require ( + github.com/FabianWilms/GoReadableID v0.0.0-20170714182827-7d7450b775a9 + github.com/google/uuid v1.6.0 + github.com/nats-io/nats.go v1.39.1 +) + +require ( + github.com/gosimple/slug v1.15.0 // indirect + github.com/gosimple/unidecode v1.0.1 // indirect + github.com/klauspost/compress v1.17.9 // indirect + github.com/nats-io/nkeys v0.4.9 // indirect + github.com/nats-io/nuid v1.0.1 // indirect + golang.org/x/crypto v0.31.0 // indirect + golang.org/x/sys v0.28.0 // indirect +) -- cgit