-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
50 lines (43 loc) · 1.63 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
module github.com/cloudprivacylabs/lsa
go 1.19
require (
github.com/araddon/dateparse v0.0.0-20210429162001-6b43995a97de
github.com/bserdar/jsonom v1.0.0
github.com/bserdar/jsonstream v0.0.0-20190428032403-9f1769267072
github.com/nleeper/goment v1.4.4
github.com/piprate/json-gold v0.4.0
github.com/spf13/cobra v1.1.3
github.com/stretchr/testify v1.8.0
golang.org/x/text v0.9.0
)
require github.com/mitchellh/go-homedir v1.1.0
require (
github.com/cloudprivacylabs/lpg/v2 v2.0.1
github.com/cloudprivacylabs/opencypher v1.0.0-beta-15
github.com/google/uuid v1.3.0
github.com/hashicorp/golang-lru/v2 v2.0.1
github.com/joho/godotenv v1.4.0
)
require github.com/antlr/antlr4/runtime/Go/antlr v0.0.0-20210803070921-b358b509191a // indirect
require (
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
github.com/richardlehane/mscfb v1.0.4 // indirect
github.com/richardlehane/msoleps v1.0.3 // indirect
github.com/xuri/efp v0.0.0-20220603152613-6918739fd470 // indirect
github.com/xuri/excelize/v2 v2.7.1
github.com/xuri/nfp v0.0.0-20220409054826-5e722a1d9e22 // indirect
golang.org/x/crypto v0.8.0 // indirect
golang.org/x/net v0.9.0 // indirect
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/emirpasic/gods v1.18.1 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/mitchellh/mapstructure v1.5.0
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/pquerna/cachecontrol v0.0.0-20180517163645-1555304b9b35 // indirect
github.com/spf13/pflag v1.0.5
github.com/tkuchiki/go-timezone v0.2.0 // indirect
gopkg.in/yaml.v2 v2.4.0
gopkg.in/yaml.v3 v3.0.1 // indirect
)