summaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-16 23:01:59 +0200
committerPaul Buetow <paul@buetow.org>2026-03-16 23:01:59 +0200
commited32c7fea5ad0fefccab9c99a51ebdae13b3a2f2 (patch)
tree583f793af4287444346ff63d4a448625cc2346c9 /go.mod
parent57a7b5961037eb565d9cddc324bd0246daff440b (diff)
bump version to v0.2.0v0.2.0
- Add REPL mode with vi keybindings - Add built-in commands (help, clear, quit/exit) - Add mage repl target Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod10
1 files changed, 10 insertions, 0 deletions
diff --git a/go.mod b/go.mod
index 1e5c5d2..c62105a 100644
--- a/go.mod
+++ b/go.mod
@@ -3,3 +3,13 @@ module codeberg.org/snonux/perc
go 1.25.4
require github.com/magefile/mage v1.15.0
+
+require (
+ github.com/c-bata/go-prompt v0.2.6 // indirect
+ github.com/mattn/go-colorable v0.1.7 // indirect
+ github.com/mattn/go-isatty v0.0.12 // indirect
+ github.com/mattn/go-runewidth v0.0.9 // indirect
+ github.com/mattn/go-tty v0.0.3 // indirect
+ github.com/pkg/term v1.2.0-beta.2 // indirect
+ golang.org/x/sys v0.0.0-20200918174421-af09f7315aff // indirect
+)