-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
54 lines (51 loc) · 2.3 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
module github.com/oipwg/oip
go 1.19
require (
github.com/asaskevich/EventBus v0.0.0-20200907212545-49d423059eef
github.com/azer/logger v1.0.0
github.com/bitspill/flod v0.0.0-20200117025253-bf2a74ee75ee
github.com/bitspill/flosig v0.0.0-20191024192613-11583367a86e
github.com/bitspill/floutil v0.0.0-20180525171018-986e42f96cdb
github.com/cloudflare/backoff v0.0.0-20161212185259-647f3cdfc87a
github.com/davecgh/go-spew v1.1.1
github.com/dustin/go-humanize v1.0.1-0.20220901183258-bd075d4544f0
github.com/golang/protobuf v1.5.2
github.com/gorilla/handlers v1.5.1 // ToDo deprecated
github.com/gorilla/mux v1.8.0 // ToDo deprecated
github.com/hashicorp/golang-lru/v2 v2.0.1
github.com/jhump/protoreflect v1.14.0
github.com/json-iterator/go v1.1.12
github.com/olivere/elastic/v7 v7.0.32 // ToDo deprecated + major bump
github.com/pkg/errors v0.9.1 // ToDo deprecated
github.com/rs/cors v1.8.2
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.14.0
)
require (
github.com/azer/is-terminal v1.0.0 // indirect
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f // indirect
github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd // indirect
github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792 // indirect
github.com/felixge/httpsnoop v1.0.1 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/magiconair/properties v1.8.6 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
github.com/spf13/afero v1.9.2 // indirect
github.com/spf13/cast v1.5.0 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/subosito/gotenv v1.4.1 // indirect
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e // indirect
golang.org/x/sys v0.0.0-20220908164124-27713097b956 // indirect
golang.org/x/text v0.4.0 // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)