aboutsummaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2023-03-07 23:02:38 +0700
committerShulhan <ms@kilabit.info>2023-03-07 23:02:59 +0700
commit1ea62df86d5674fce80a4c5a474086f8e56919d6 (patch)
tree3126d10e382671d20c9e43a35f218e87003d1cb9 /go.mod
parent4b4e44bed548115f2c46f4521e8fe2971eb12fc5 (diff)
downloadbeku-1ea62df86d5674fce80a4c5a474086f8e56919d6.tar.xz
go.mod: set minimum go version to 1.18 and update all dependencies
This changes remove the "-cache" and "-testcache" options when running GoClean due to both of this options case an exit status 1 on Go 1.18.
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod12
1 files changed, 7 insertions, 5 deletions
diff --git a/go.mod b/go.mod
index 57d4406..ee4ee28 100644
--- a/go.mod
+++ b/go.mod
@@ -1,10 +1,12 @@
module github.com/shuLhan/beku
+go 1.18
+
require (
- github.com/shuLhan/share v0.33.0
- golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
- golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27 // indirect
- golang.org/x/tools v0.1.9
+ github.com/shuLhan/share v0.44.0
+ golang.org/x/tools v0.1.12
)
-go 1.11
+require golang.org/x/sys v0.5.0 // indirect
+
+//replace github.com/shuLhan/share => ../share