Skip to content

Commit a3f36e8

Browse files
committed
refactor(server): update go modules
1 parent ea3646e commit a3f36e8

File tree

2 files changed

+136
-638
lines changed

2 files changed

+136
-638
lines changed

teamserver/go.mod

+41-27
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,61 @@
11
module Havoc
22

3-
go 1.18
3+
go 1.21.0
4+
5+
toolchain go1.22.5
46

57
require (
68
github.com/agext/levenshtein v1.2.3
79
github.com/apparentlymart/go-dump v0.0.0-20190214190832-042adf3cf4a0
810
github.com/apparentlymart/go-textseg/v13 v13.0.0
911
github.com/davecgh/go-spew v1.1.1
10-
github.com/fatih/color v1.12.0
12+
github.com/fatih/color v1.17.0
1113
github.com/fatih/structs v1.1.0
12-
github.com/gin-gonic/gin v1.7.7
14+
github.com/gin-gonic/gin v1.10.0
1315
github.com/go-test/deep v1.0.7
14-
github.com/google/go-cmp v0.5.6
15-
github.com/gorilla/websocket v1.5.0
16+
github.com/google/go-cmp v0.6.0
17+
github.com/gorilla/websocket v1.5.3
1618
github.com/kylelemons/godebug v1.1.0
17-
github.com/mattn/go-sqlite3 v1.14.16
19+
github.com/mattn/go-sqlite3 v1.14.23
1820
github.com/mitchellh/go-wordwrap v1.0.1
1921
github.com/olekukonko/tablewriter v0.0.5
2022
github.com/sergi/go-diff v1.2.0
21-
github.com/spf13/cobra v1.2.1
22-
github.com/zclconf/go-cty v1.9.0
23-
golang.org/x/crypto v0.0.0-20220314234659-1baeb1ce4c0b
24-
golang.org/x/image v0.5.0
25-
golang.org/x/text v0.7.0
23+
github.com/spf13/cobra v1.8.1
24+
github.com/zclconf/go-cty v1.15.0
25+
golang.org/x/crypto v0.27.0
26+
golang.org/x/image v0.20.0
27+
golang.org/x/text v0.18.0
2628
)
2729

2830
require (
31+
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
32+
github.com/bytedance/sonic v1.12.2 // indirect
33+
github.com/bytedance/sonic/loader v0.2.0 // indirect
34+
github.com/cloudwego/base64x v0.1.4 // indirect
35+
github.com/cloudwego/iasm v0.2.0 // indirect
36+
github.com/gabriel-vasile/mimetype v1.4.5 // indirect
2937
github.com/gin-contrib/sse v0.1.0 // indirect
30-
github.com/go-playground/locales v0.13.0 // indirect
31-
github.com/go-playground/universal-translator v0.17.0 // indirect
32-
github.com/go-playground/validator/v10 v10.4.1 // indirect
33-
github.com/golang/protobuf v1.5.2 // indirect
34-
github.com/inconshreveable/mousetrap v1.0.0 // indirect
35-
github.com/json-iterator/go v1.1.11 // indirect
36-
github.com/leodido/go-urn v1.2.0 // indirect
37-
github.com/mattn/go-colorable v0.1.8 // indirect
38-
github.com/mattn/go-isatty v0.0.13 // indirect
39-
github.com/mattn/go-runewidth v0.0.9 // indirect
40-
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
41-
github.com/modern-go/reflect2 v1.0.1 // indirect
38+
github.com/go-playground/locales v0.14.1 // indirect
39+
github.com/go-playground/universal-translator v0.18.1 // indirect
40+
github.com/go-playground/validator/v10 v10.22.0 // indirect
41+
github.com/goccy/go-json v0.10.3 // indirect
42+
github.com/inconshreveable/mousetrap v1.1.0 // indirect
43+
github.com/json-iterator/go v1.1.12 // indirect
44+
github.com/klauspost/cpuid/v2 v2.2.8 // indirect
45+
github.com/leodido/go-urn v1.4.0 // indirect
46+
github.com/mattn/go-colorable v0.1.13 // indirect
47+
github.com/mattn/go-isatty v0.0.20 // indirect
48+
github.com/mattn/go-runewidth v0.0.16 // indirect
49+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
50+
github.com/modern-go/reflect2 v1.0.2 // indirect
51+
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
52+
github.com/rivo/uniseg v0.4.7 // indirect
4253
github.com/spf13/pflag v1.0.5 // indirect
43-
github.com/ugorji/go/codec v1.1.7 // indirect
44-
golang.org/x/sys v0.5.0 // indirect
45-
google.golang.org/protobuf v1.26.0 // indirect
46-
gopkg.in/yaml.v2 v2.4.0 // indirect
54+
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
55+
github.com/ugorji/go/codec v1.2.12 // indirect
56+
golang.org/x/arch v0.10.0 // indirect
57+
golang.org/x/net v0.29.0 // indirect
58+
golang.org/x/sys v0.25.0 // indirect
59+
google.golang.org/protobuf v1.34.2 // indirect
60+
gopkg.in/yaml.v3 v3.0.1 // indirect
4761
)

0 commit comments

Comments
 (0)