summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGab <24553253+gabrix73@users.noreply.github.com>2025-12-02 01:02:45 +0100
committerGitHub <noreply@github.com>2025-12-02 01:02:45 +0100
commiteffb9e47ce38714bea911dd5119c751bc06c674f (patch)
treeb0abf3a475030f4b6091e82847e2be71953a6be1
parent01c936619275b311f683b50bb10645ac28505189 (diff)
downloadgensecpass3-effb9e47ce38714bea911dd5119c751bc06c674f.tar.gz
gensecpass3-effb9e47ce38714bea911dd5119c751bc06c674f.tar.xz
gensecpass3-effb9e47ce38714bea911dd5119c751bc06c674f.zip
Initialize go.mod with module and dependencies
-rw-r--r--go.mod21
1 files changed, 21 insertions, 0 deletions
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
+)