From effb9e47ce38714bea911dd5119c751bc06c674f Mon Sep 17 00:00:00 2001 From: Gab <24553253+gabrix73@users.noreply.github.com> Date: Tue, 2 Dec 2025 01:02:45 +0100 Subject: Initialize go.mod with module and dependencies --- go.mod | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 go.mod diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..addf3e0 --- /dev/null +++ b/go.mod @@ -0,0 +1,21 @@ +module gensecpass3 + +go 1.21 + +require ( + filippo.io/age v1.2.0 + github.com/awnumar/memguard v0.22.5 + github.com/gdamore/tcell/v2 v2.7.4 + golang.org/x/term v0.25.0 +) + +require ( + github.com/awnumar/memcall v0.2.0 // indirect + github.com/gdamore/encoding v1.0.0 // indirect + github.com/lucasb-eyer/go-colorful v1.2.0 // indirect + github.com/mattn/go-runewidth v0.0.15 // indirect + github.com/rivo/uniseg v0.4.3 // indirect + golang.org/x/crypto v0.24.0 // indirect + golang.org/x/sys v0.26.0 // indirect + golang.org/x/text v0.16.0 // indirect +) -- cgit v1.2.3