summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordemo <demo@antix1>2026-05-29 10:36:22 -0400
committerdemo <demo@antix1>2026-05-29 10:36:22 -0400
commit354733472372241ae80737be6193be63607df73c (patch)
treec35c761a0dd7e11f6623949c3e8883768676949c
parent0495d3b492d90acc68cbdb320fb4afb8986a75ce (diff)
chore: go get bbolt
-rw-r--r--go.mod6
-rw-r--r--go.sum4
2 files changed, 9 insertions, 1 deletions
diff --git a/go.mod b/go.mod
index 94e60b7..d38e4f1 100644
--- a/go.mod
+++ b/go.mod
@@ -2,4 +2,8 @@ module git.brandonirizarry.xyz/task
go 1.26.2
-require github.com/urfave/cli/v3 v3.9.0 // indirect
+require (
+ github.com/urfave/cli/v3 v3.9.0 // indirect
+ go.etcd.io/bbolt v1.4.3 // indirect
+ golang.org/x/sys v0.29.0 // indirect
+)
diff --git a/go.sum b/go.sum
index 2abba4b..e02bab0 100644
--- a/go.sum
+++ b/go.sum
@@ -1,2 +1,6 @@
github.com/urfave/cli/v3 v3.9.0 h1:AV9lIiPv3ukYnxunaCUsHnEozptYmDN2F0+yWqLMn/c=
github.com/urfave/cli/v3 v3.9.0/go.mod h1:ysVLtOEmg2tOy6PknnYVhDoouyC/6N42TMeoMzskhso=
+go.etcd.io/bbolt v1.4.3 h1:dEadXpI6G79deX5prL3QRNP6JB8UxVkqo4UPnHaNXJo=
+go.etcd.io/bbolt v1.4.3/go.mod h1:tKQlpPaYCVFctUIgFKFnAlvbmB3tpy1vkTnDWohtc0E=
+golang.org/x/sys v0.29.0 h1:TPYlXGxvx1MGTn2GiZDhnjPA9wZzZeGKHHmKhHYvgaU=
+golang.org/x/sys v0.29.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=