-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
36 lines (29 loc) · 855 Bytes
/
Copy pathgo.mod
File metadata and controls
36 lines (29 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
module example/hello
go 1.22.2
require github.com/google/uuid v1.6.0
require github.com/gorilla/mux v1.8.1
require (
github.com/lib/pq v1.10.9
golang.org/x/crypto v0.29.0
)
require (
github.com/golang-jwt/jwt/v5 v5.2.1
github.com/kolesa-team/go-webp v1.0.3
)
require (
github.com/google/gopacket v1.1.19 // indirect
github.com/miekg/dns v1.1.63 // indirect
golang.org/x/image v0.0.0-20210628002857-a66eb6448b8d // indirect
golang.org/x/mod v0.18.0 // indirect
golang.org/x/net v0.31.0 // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/sys v0.27.0 // indirect
golang.org/x/tools v0.22.0 // indirect
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/disintegration/imaging v1.6.2
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/stretchr/testify v1.9.0
gopkg.in/yaml.v3 v3.0.1 // indirect
)