-
Notifications
You must be signed in to change notification settings - Fork 3
/
go.mod
74 lines (71 loc) · 2.93 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
65
66
67
68
69
70
71
72
73
74
module github.com/nsip/nias2
go 1.21
require (
github.com/BurntSushi/toml v1.0.0
github.com/PuerkitoBio/goquery v1.8.1
github.com/balacode/one-file-pdf v1.0.1
github.com/cenkalti/backoff v2.2.1+incompatible
github.com/clipperhouse/jargon v1.0.7
github.com/go-resty/resty/v2 v2.3.0
github.com/kylelemons/godebug v1.1.0
github.com/labstack/echo/v4 v4.9.0
github.com/microcosm-cc/bluemonday v1.0.26
github.com/mitchellh/mapstructure v1.4.3
github.com/nats-io/nats.go v1.28.0
github.com/nats-io/nuid v1.0.1
github.com/nats-io/stan.go v0.10.2
github.com/orcaman/concurrent-map v1.0.0
github.com/pkg/errors v0.9.1
github.com/playlyfe/go-graphql v0.0.0-20191219091308-23c3f22218ef
github.com/shomali11/parallelizer v0.0.0-20210506023428-ed2dd4732c78
github.com/subchen/go-xmldom v1.1.2
github.com/syndtr/goleveldb v1.0.0
github.com/tidwall/gjson v1.14.0
github.com/tidwall/sjson v1.2.4
github.com/twinj/uuid v1.0.0
github.com/wildducktheories/go-csv v0.0.0-20210709120223-87450005fe47
github.com/xeipuuv/gojsonschema v1.2.0
golang.org/x/net v0.23.0
gopkg.in/cheggaaa/pb.v1 v1.0.28
gopkg.in/fatih/set.v0 v0.2.1
)
require (
github.com/andybalholm/cascadia v1.3.2 // indirect
github.com/antchfx/xpath v1.2.0 // indirect
github.com/aymerick/douceur v0.2.0 // indirect
github.com/clipperhouse/uax29 v1.6.8 // indirect
github.com/fatih/color v1.9.0 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/golang/protobuf v1.5.0 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/gorilla/css v1.0.0 // indirect
github.com/klauspost/compress v1.16.7 // indirect
github.com/labstack/gommon v0.3.1 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/myesui/uuid v1.0.0 // indirect
github.com/nats-io/nats-server/v2 v2.9.23 // indirect
github.com/nats-io/nats-streaming-server v0.24.3 // indirect
github.com/nats-io/nkeys v0.4.6 // indirect
github.com/onsi/ginkgo v1.12.0 // indirect
github.com/onsi/gomega v1.7.1 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/smartystreets/goconvey v1.6.4 // indirect
github.com/stretchr/testify v1.7.1 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.1 // indirect
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
golang.org/x/crypto v0.21.0 // indirect
golang.org/x/sys v0.18.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/time v0.3.0 // indirect
google.golang.org/protobuf v1.33.0 // indirect
gopkg.in/stretchr/testify.v1 v1.2.2 // indirect
gopkg.in/yaml.v2 v2.2.8 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)