-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
30 lines (26 loc) · 871 Bytes
/
go.mod
File metadata and controls
30 lines (26 loc) · 871 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
module pcbook
go 1.23.4
require (
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.0
google.golang.org/genproto/googleapis/api v0.0.0-20250124145028-65684f501c47
google.golang.org/grpc v1.70.0
)
require (
github.com/kr/text v0.2.0 // indirect
github.com/rogpeppe/go-internal v1.13.1 // indirect
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/google/uuid v1.6.0
github.com/jinzhu/copier v0.4.0
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/stretchr/testify v1.10.0
golang.org/x/crypto v0.32.0
golang.org/x/net v0.33.0 // indirect
golang.org/x/sys v0.29.0 // indirect
golang.org/x/text v0.21.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20250124145028-65684f501c47 // indirect
google.golang.org/protobuf v1.36.4
gopkg.in/yaml.v3 v3.0.1 // indirect
)