Modernize the logging and flag parsing a bit

This commit is contained in:
2025-09-25 15:50:02 +02:00
parent 0adbca216c
commit 476f71a90c
3 changed files with 106 additions and 65 deletions

8
go.mod
View File

@@ -1,9 +1,11 @@
module repo
go 1.22.4
go 1.23.6
require (
code.gitea.io/sdk/gitea v0.18.0
git.site.quack-lab.dev/dave/cylogger v1.4.0
git.site.quack-lab.dev/dave/cyutils v1.4.0
github.com/go-git/go-git/v5 v5.12.0
golang.design/x/clipboard v0.7.0
)
@@ -20,7 +22,9 @@ require (
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
github.com/go-git/go-billy/v5 v5.5.0 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/hashicorp/go-version v1.6.0 // indirect
github.com/hexops/valast v1.5.0 // indirect
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
github.com/kevinburke/ssh_config v1.2.0 // indirect
github.com/pjbgf/sha1cd v0.3.0 // indirect
@@ -34,6 +38,8 @@ require (
golang.org/x/mod v0.12.0 // indirect
golang.org/x/net v0.22.0 // indirect
golang.org/x/sys v0.19.0 // indirect
golang.org/x/time v0.12.0 // indirect
golang.org/x/tools v0.13.0 // indirect
gopkg.in/warnings.v0 v0.1.2 // indirect
mvdan.cc/gofumpt v0.4.0 // indirect
)