Skip to content

Commit b3fad19

Browse files
authored
fix: minimum go version (#7)
1 parent b5b88d8 commit b3fad19

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
module github.com/bxcodec/goqueue
22

3-
go 1.20
3+
go 1.22
44

55
require (
66
github.com/google/uuid v1.6.0
77
github.com/rabbitmq/amqp091-go v1.9.0
88
github.com/sirupsen/logrus v1.9.3
99
github.com/stretchr/testify v1.8.0
10+
go.uber.org/multierr v1.11.0
1011
golang.org/x/sync v0.7.0
1112
)
1213

1314
require (
1415
github.com/davecgh/go-spew v1.1.1 // indirect
1516
github.com/pmezard/go-difflib v1.0.0 // indirect
1617
github.com/stretchr/objx v0.4.0 // indirect
17-
go.uber.org/multierr v1.11.0 // indirect
1818
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect
1919
gopkg.in/yaml.v3 v3.0.1 // indirect
2020
)

0 commit comments

Comments
 (0)