forked from gane5hvarma/panther
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
64 lines (62 loc) · 2.52 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
module github.com/panther-labs/panther
go 1.15
require (
github.com/Masterminds/semver/v3 v3.1.1
github.com/anyascii/go v0.1.7
github.com/aws-cloudformation/rain v1.1.1
github.com/aws/aws-lambda-go v1.20.0
github.com/aws/aws-sdk-go v1.37.8
github.com/aws/aws-sdk-go-v2 v1.1.0
github.com/aws/aws-sdk-go-v2/config v1.1.0
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.0.1
github.com/aws/aws-sdk-go-v2/service/cloudformation v1.1.0
github.com/aws/aws-sdk-go-v2/service/ecr v1.1.0
github.com/aws/aws-sdk-go-v2/service/s3 v1.1.0
github.com/aws/aws-sdk-go-v2/service/sts v1.1.0
github.com/cenkalti/backoff/v4 v4.1.0
github.com/dchest/uniuri v0.0.0-20200228104902-7aecb25e1fe5
github.com/fatih/structtag v1.2.0
github.com/go-bindata/go-bindata v3.1.2+incompatible
github.com/go-playground/universal-translator v0.17.0 // indirect
github.com/go-playground/validator v9.31.0+incompatible
github.com/google/go-github v17.0.0+incompatible
github.com/google/go-querystring v1.0.0 // indirect
github.com/google/gofuzz v1.0.0
github.com/google/uuid v1.1.2
github.com/hashicorp/go-cleanhttp v0.5.1
github.com/hashicorp/go-version v1.2.1
github.com/hashicorp/golang-lru v0.5.4
github.com/iancoleman/strcase v0.1.3
github.com/influxdata/go-syslog/v3 v3.0.0
github.com/itchyny/timefmt-go v0.1.1
github.com/joho/godotenv v1.3.0
github.com/json-iterator/go v1.1.10
github.com/kelseyhightower/envconfig v1.4.0
github.com/kr/text v0.2.0 // indirect
github.com/leodido/go-urn v1.2.0 // indirect
github.com/magefile/mage v1.11.0
github.com/mitchellh/mapstructure v1.1.2
github.com/modern-go/reflect2 v1.0.1
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/pkg/errors v0.9.1
github.com/stretchr/objx v0.2.0 // indirect
github.com/stretchr/testify v1.6.1
github.com/tidwall/gjson v1.6.3
github.com/tidwall/sjson v1.1.2
github.com/valyala/fasttemplate v1.2.1
github.com/xeipuuv/gojsonschema v1.2.0
go.uber.org/multierr v1.6.0
go.uber.org/zap v1.16.0
golang.org/x/lint v0.0.0-20200302205851-738671d3881b // indirect
golang.org/x/mod v0.3.0
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9
golang.org/x/text v0.3.4 // indirect
golang.org/x/tools v0.1.1-0.20210201215835-d58e364bc7f2
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
gopkg.in/go-playground/assert.v1 v1.2.1
gopkg.in/go-playground/validator.v9 v9.31.0
gopkg.in/yaml.v2 v2.3.0
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776
honnef.co/go/tools v0.0.1-2020.1.4 // indirect
)