-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgo.mod
39 lines (34 loc) · 1.13 KB
/
go.mod
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
37
38
39
// SPDX-FileCopyrightText: 2022 - 2024 NRK
//
// SPDX-License-Identifier: MIT
module github.com/nrkno/terraform-registry
go 1.21
toolchain go1.21.4
require (
github.com/ProtonMail/go-crypto v1.1.3
github.com/aws/aws-sdk-go v1.55.5
github.com/go-chi/chi/v5 v5.2.0
github.com/golang-jwt/jwt/v5 v5.2.1
github.com/google/go-github/v43 v43.0.0
github.com/hashicorp/go-version v1.7.0
github.com/matryer/is v1.4.1
github.com/migueleliasweb/go-github-mock v1.0.1
github.com/stretchr/testify v1.10.0
go.uber.org/zap v1.27.0
golang.org/x/oauth2 v0.25.0
)
require (
github.com/cloudflare/circl v1.3.7 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/google/go-github/v64 v64.0.0 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/gorilla/mux v1.8.0 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/stretchr/objx v0.5.2 // indirect
go.uber.org/multierr v1.10.0 // indirect
golang.org/x/crypto v0.31.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/time v0.3.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)