-
Notifications
You must be signed in to change notification settings - Fork 2
/
go.mod
56 lines (53 loc) · 2.54 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
module github.com/cartridge-gg/starknet-indexer
go 1.17
require (
entgo.io/contrib v0.2.1-0.20220421093944-3186275bff87
entgo.io/ent v0.10.2-0.20220525124600-e1c5277483cc
github.com/99designs/gqlgen v0.17.3-0.20220329113751-1324c3ffb9ff
github.com/alecthomas/kong v0.2.11
github.com/dontpanicdao/caigo v0.2.1-0.20220517132056-e34006317632
github.com/hashicorp/go-multierror v1.1.1
github.com/mattn/go-sqlite3 v1.14.12
github.com/rs/zerolog v1.26.1
github.com/tejzpr/ordered-concurrently/v3 v3.0.0
github.com/vektah/gqlparser/v2 v2.4.3-0.20220508162109-d3d9eb001575
github.com/vmihailenco/msgpack/v5 v5.3.5
)
require (
ariga.io/atlas v0.4.1 // indirect
github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6 // indirect
github.com/agext/levenshtein v1.2.1 // indirect
github.com/agnivade/levenshtein v1.1.1 // indirect
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
github.com/deckarep/golang-set v1.8.0 // indirect
github.com/ethereum/go-ethereum v1.10.17 // indirect
github.com/go-ole/go-ole v1.2.1 // indirect
github.com/go-openapi/inflect v0.19.0 // indirect
github.com/go-stack/stack v1.8.0 // indirect
github.com/google/go-cmp v0.5.7 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/gorilla/websocket v1.5.0 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d // indirect
github.com/hashicorp/hcl/v2 v2.10.0 // indirect
github.com/logrusorgru/aurora/v3 v3.0.0 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mitchellh/go-wordwrap v0.0.0-20150314170334-ad45545899c7 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible // indirect
github.com/stretchr/testify v1.7.1 // indirect
github.com/tklauser/go-sysconf v0.3.5 // indirect
github.com/tklauser/numcpus v0.2.2 // indirect
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
github.com/zclconf/go-cty v1.8.0 // indirect
golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4 // indirect
golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3 // indirect
golang.org/x/sys v0.0.0-20220412211240-33da011f77ad // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/tools v0.1.10 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)