summaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authortheimpostor <sahirhoda@gmail.com>2023-08-03 08:28:41 -0500
committertheimpostor <sahirhoda@gmail.com>2023-08-03 08:28:41 -0500
commit2d684e8e11525641c3db594b317b10faa2daa437 (patch)
tree88cfb83e1fa34062ec315b96ba0626915950275d /go.mod
parenta51cea32f79859f6cf33bd6a45737a6019aa4ef9 (diff)
Rename module to osc, and use subcommands via spf13/cobra
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod14
1 files changed, 8 insertions, 6 deletions
diff --git a/go.mod b/go.mod
index 17ba0a7..a939270 100644
--- a/go.mod
+++ b/go.mod
@@ -1,20 +1,22 @@
-module github.com/theimpostor/osc52
+module github.com/theimpostor/osc
-go 1.17
+go 1.20
require (
github.com/gdamore/tcell/v2 v2.6.0
- golang.org/x/exp v0.0.0-20230713183714-613f0c0eb8a1
- golang.org/x/sys v0.10.0 // indirect
+ github.com/jba/slog v0.0.0-20230720141417-43400bf08a38
+ github.com/spf13/cobra v1.7.0
+ golang.org/x/exp v0.0.0-20230801115018-d63ba01acd4b
)
-require github.com/jba/slog v0.0.0-20230720141417-43400bf08a38
-
require (
github.com/gdamore/encoding v1.0.0 // indirect
+ github.com/inconshreveable/mousetrap v1.1.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.4 // indirect
+ github.com/spf13/pflag v1.0.5 // indirect
+ golang.org/x/sys v0.10.0 // indirect
golang.org/x/term v0.10.0 // indirect
golang.org/x/text v0.11.0 // indirect
)