-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
23 lines (20 loc) · 735 Bytes
/
go.mod
File metadata and controls
23 lines (20 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module example.com/mod
go 1.20
require (
github.com/google/go-sev-guest v0.6.1
github.com/jellydator/ttlcache/v3 v3.0.1
)
require (
github.com/golang/protobuf v1.5.0 // indirect
github.com/google/logger v1.1.1 // indirect
github.com/google/uuid v1.0.0 // indirect
github.com/pborman/uuid v1.2.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/stretchr/testify v1.8.3 // indirect
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/multierr v1.8.0 // indirect
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e // indirect
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
golang.org/x/sys v0.0.0-20220608164250-635b8c9b7f68 // indirect
google.golang.org/protobuf v1.28.0 // indirect
)