This repository has been archived by the owner on May 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
221 lines (220 loc) · 10.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
module github.com/c3systems/c3-sdk-go-example-mattermost
require (
github.com/BurntSushi/toml v0.3.1
github.com/Microsoft/go-winio v0.4.11
github.com/NYTimes/gziphandler v1.0.1
github.com/allegro/bigcache v1.1.0
github.com/aristanetworks/goarista v0.0.0-20181210134948-aa2a42e13be6
github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da
github.com/avct/uasurfer v0.0.0-20180927160713-2ce2c8fcd544
github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973
github.com/blang/semver v3.5.1+incompatible
github.com/btcsuite/btcd v0.0.0-20181130015935-7d2daa5bfef2
github.com/c3systems/c3-go v0.0.0-20181130031350-cc9ec851ff6a
github.com/c3systems/c3-sdk-go v0.0.7
github.com/c3systems/merkletree v0.1.0
github.com/coreos/go-semver v0.2.0
github.com/corpix/uarand v0.0.0
github.com/davecgh/go-spew v1.1.1
github.com/deckarep/golang-set v1.7.1
github.com/dgryski/dgoogauth v0.0.0-20171123172744-fd153d5969d3
github.com/disintegration/imaging v1.5.0
github.com/docker/distribution v2.7.0+incompatible
github.com/docker/docker v1.13.1
github.com/docker/go-connections v0.3.0
github.com/docker/go-units v0.3.3
github.com/dustin/go-humanize v1.0.0
github.com/dyatlov/go-opengraph v0.0.0-20180429202543-816b6608b3c8
github.com/eoscanada/eos-go v0.0.0-20181105195849-00b77394c50e
github.com/ethereum/go-ethereum v1.8.20
github.com/fatih/color v1.7.0
github.com/fd/go-nat v1.0.0
github.com/fsnotify/fsnotify v1.4.7
github.com/go-ini/ini v1.39.3
github.com/go-ldap/ldap v0.0.0-20181126164332-5c2c0f997205
github.com/go-redis/redis v6.14.2+incompatible
github.com/go-sql-driver/mysql v1.4.1
github.com/go-stack/stack v1.8.0
github.com/gogo/protobuf v0.0.0-20181104164017-211a54c57504
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0
github.com/golang/protobuf v1.2.0
github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db
github.com/google/uuid v1.1.0
github.com/gorilla/context v1.1.1
github.com/gorilla/handlers v1.4.0
github.com/gorilla/mux v1.6.2
github.com/gorilla/schema v1.0.2
github.com/gorilla/websocket v1.4.0
github.com/gxed/GoEndian v0.0.0-20160916112711-0f5c6873267e
github.com/gxed/eventfd v0.0.0-20160916113412-80a92cca79a8
github.com/gxed/hashland v0.0.0-20180221191214-d9f6b97f8db2
github.com/gxed/pubsub v0.0.0-20180201040156-26ebdf44f824
github.com/hako/durafmt v0.0.0-20180520121703-7b7ae1e72ead
github.com/hashicorp/errwrap v1.0.0
github.com/hashicorp/go-hclog v0.0.0-20180910232447-e45cbeb79f04
github.com/hashicorp/go-immutable-radix v1.0.0
github.com/hashicorp/go-msgpack v0.0.0-20150518234257-fa3f63826f7c
github.com/hashicorp/go-multierror v1.0.0
github.com/hashicorp/go-plugin v0.0.0-20180814222501-a4620f9913d1
github.com/hashicorp/go-sockaddr v0.0.0-20180320115054-6d291a969b86
github.com/hashicorp/golang-lru v0.5.0
github.com/hashicorp/hcl v1.0.0
github.com/hashicorp/memberlist v0.0.0-20181025170508-2072f3a3ff4b
github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d
github.com/huin/goupnp v1.0.0
github.com/icrowley/fake v0.0.0-20180203215853-4178557ae428
github.com/inconshreveable/mousetrap v1.0.0
github.com/ipfs/bbloom v0.0.0-20180721065414-f6503c07a6c2
github.com/ipfs/go-bitswap v1.1.13
github.com/ipfs/go-block-format v0.2.0
github.com/ipfs/go-blockservice v0.0.0-20181207231807-4255e937ad7f
github.com/ipfs/go-cid v0.9.0
github.com/ipfs/go-datastore v3.2.0+incompatible
github.com/ipfs/go-ipfs-addr v0.1.25
github.com/ipfs/go-ipfs-api v1.3.5
github.com/ipfs/go-ipfs-blockstore v0.1.2
github.com/ipfs/go-ipfs-cmdkit v1.1.3
github.com/ipfs/go-ipfs-delay v0.0.1
github.com/ipfs/go-ipfs-ds-help v0.1.2
github.com/ipfs/go-ipfs-exchange-interface v0.1.0
github.com/ipfs/go-ipfs-flags v0.0.1
github.com/ipfs/go-ipfs-keystore v0.0.0-20181204233654-a15b666ef5e9
github.com/ipfs/go-ipfs-pq v0.0.1
github.com/ipfs/go-ipfs-routing v0.1.7
github.com/ipfs/go-ipfs-util v1.2.8
github.com/ipfs/go-log v1.5.7
github.com/ipfs/go-metrics-interface v0.2.0
github.com/ipfs/go-verifcid v0.0.0-20181102235604-8909da14ac6d
github.com/jackpal/gateway v1.0.5
github.com/jackpal/go-nat-pmp v1.0.1
github.com/jaytaylor/html2text v0.0.0-20180606194806-57d518f124b0
github.com/jbenet/go-base58 v0.0.0-20150317085156-6237cf65f3a6
github.com/jbenet/go-temp-err-catcher v0.0.0-20150120210811-aac704a3f4f2
github.com/jbenet/goprocess v0.0.0-20160826012719-b497e2f366b8
github.com/jehiah/go-strftime v0.0.0-20171201141054-1d33003b3869
github.com/konsorten/go-windows-terminal-sequences v1.0.1
github.com/lib/pq v1.0.0
github.com/libp2p/go-addr-util v2.0.7+incompatible
github.com/libp2p/go-buffer-pool v0.1.1
github.com/libp2p/go-conn-security v0.1.15
github.com/libp2p/go-conn-security-multistream v0.1.15
github.com/libp2p/go-flow-metrics v0.2.0
github.com/libp2p/go-libp2p v6.0.23+incompatible
github.com/libp2p/go-libp2p-crypto v0.0.0-20181130162722-b150863d61f7
github.com/libp2p/go-libp2p-host v3.0.15+incompatible
github.com/libp2p/go-libp2p-interface-connmgr v0.0.21
github.com/libp2p/go-libp2p-interface-pnet v3.0.0+incompatible
github.com/libp2p/go-libp2p-loggables v1.1.24
github.com/libp2p/go-libp2p-metrics v2.1.7+incompatible
github.com/libp2p/go-libp2p-nat v0.8.8
github.com/libp2p/go-libp2p-net v3.0.15+incompatible
github.com/libp2p/go-libp2p-netutil v0.4.12
github.com/libp2p/go-libp2p-peer v2.4.0+incompatible
github.com/libp2p/go-libp2p-peerstore v2.0.6+incompatible
github.com/libp2p/go-libp2p-protocol v1.0.0
github.com/libp2p/go-libp2p-pubsub v0.10.2
github.com/libp2p/go-libp2p-record v4.1.7+incompatible
github.com/libp2p/go-libp2p-routing v2.7.1+incompatible
github.com/libp2p/go-libp2p-secio v2.0.17+incompatible
github.com/libp2p/go-libp2p-swarm v3.0.22+incompatible
github.com/libp2p/go-libp2p-transport v3.0.15+incompatible
github.com/libp2p/go-libp2p-transport-upgrader v0.1.16
github.com/libp2p/go-maddr-filter v1.1.10
github.com/libp2p/go-msgio v0.0.6
github.com/libp2p/go-reuseport v0.1.18
github.com/libp2p/go-reuseport-transport v0.1.11
github.com/libp2p/go-sockaddr v1.0.3
github.com/libp2p/go-stream-muxer v3.0.1+incompatible
github.com/libp2p/go-tcp-transport v2.0.16+incompatible
github.com/libp2p/go-testutil v1.2.10
github.com/magiconair/properties v1.8.0
github.com/mailru/easyjson v0.0.0-20180823135443-60711f1a8329
github.com/mattermost/gorp v0.0.0-20180406155236-520a119fe353
github.com/mattermost/rsc v0.0.0-20160330161541-bbaefb05eaa0
github.com/mattermost/viper v0.0.0-20181112161711-f99c30686b86
github.com/mattn/go-colorable v0.0.9
github.com/mattn/go-isatty v0.0.4
github.com/mattn/go-runewidth v0.0.3
github.com/mattn/go-sqlite3 v1.10.0
github.com/matttproud/golang_protobuf_extensions v1.0.1
github.com/miekg/dns v1.1.1
github.com/minio/blake2b-simd v0.0.0-20160723061019-3f5f724cb5b1
github.com/minio/minio-go v6.0.11+incompatible
github.com/minio/sha256-simd v0.0.0-20181005183134-51976451ce19
github.com/mitchellh/go-homedir v1.0.0
github.com/mitchellh/go-testing-interface v1.0.0
github.com/mitchellh/mapstructure v1.1.2
github.com/mr-tron/base58 v1.1.0
github.com/multiformats/go-multiaddr v1.3.0
github.com/multiformats/go-multiaddr-dns v0.2.5
github.com/multiformats/go-multiaddr-net v1.6.3
github.com/multiformats/go-multibase v0.3.0
github.com/multiformats/go-multicodec v0.1.6
github.com/multiformats/go-multihash v1.0.8
github.com/multiformats/go-multistream v0.3.9
github.com/nicksnyder/go-i18n v1.10.0
github.com/obscuren/ecies v0.0.0-20150213224233-7c0f4a9b18d9
github.com/oklog/run v1.0.0
github.com/olekukonko/tablewriter v0.0.1
github.com/opencontainers/go-digest v1.0.0-rc1
github.com/opentracing/opentracing-go v1.0.2
github.com/pborman/uuid v0.0.0-20180906182336-adf5a7427709
github.com/pelletier/go-toml v1.2.0
github.com/pkg/errors v0.8.0
github.com/pmezard/go-difflib v1.0.0
github.com/prometheus/client_golang v0.9.2
github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910
github.com/prometheus/common v0.0.0-20181126121408-4724e9255275
github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a
github.com/rjeczalik/notify v0.9.2
github.com/rs/cors v1.6.0
github.com/rwcarlsen/goexif v0.0.0-20180518182100-8d986c03457a
github.com/satori/go.uuid v0.0.0-20180103174451-36e9d2ebbde5
github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529
github.com/segmentio/analytics-go v0.0.0-20160426181448-2d840d861c32
github.com/segmentio/backo-go v0.0.0-20160424052352-204274ad699c
github.com/sirupsen/logrus v1.2.0
github.com/spaolacci/murmur3 v0.0.0-20170819071325-9f5d223c6079
github.com/spf13/afero v1.1.2
github.com/spf13/cast v1.3.0
github.com/spf13/cobra v0.0.3
github.com/spf13/jwalterweatherman v1.0.0
github.com/spf13/pflag v1.0.3
github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf
github.com/stretchr/objx v0.1.1
github.com/stretchr/testify v1.2.2
github.com/syndtr/goleveldb v0.0.0-20181128100959-b001fa50d6b2
github.com/throttled/throttled v2.2.4+incompatible
github.com/tidwall/gjson v1.1.3
github.com/tidwall/match v1.0.1
github.com/tidwall/sjson v1.0.3
github.com/tylerb/graceful v1.2.15
github.com/whyrusleeping/base32 v0.0.0-20170828182744-c30ac30633cc
github.com/whyrusleeping/go-logging v0.0.0-20170515211332-0457bb6b88fc
github.com/whyrusleeping/go-notifier v0.0.0-20170827234753-097c5d47330f
github.com/whyrusleeping/go-smux-multistream v2.0.2+incompatible
github.com/whyrusleeping/go-smux-yamux v2.0.8+incompatible
github.com/whyrusleeping/mafmt v1.2.8
github.com/whyrusleeping/multiaddr-filter v0.0.0-20160516205228-e903e4adabd7
github.com/whyrusleeping/tar-utils v0.0.0-20180509141711-8c6c8ba81d5c
github.com/whyrusleeping/yamux v1.1.2
github.com/xtgo/uuid v0.0.0-20140804021211-a0b114877d4c
go.uber.org/atomic v1.3.2
go.uber.org/multierr v1.1.0
go.uber.org/zap v1.9.1
golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9
golang.org/x/image v0.0.0-20181116024801-cd38e8056d9b
golang.org/x/net v0.0.0-20181213202711-891ebc4b82d6
golang.org/x/sys v0.0.0-20181213200352-4d1cda033e06
golang.org/x/text v0.3.0
google.golang.org/appengine v1.3.0
google.golang.org/genproto v0.0.0-20181202183823-bd91e49a0898
google.golang.org/grpc v1.17.0
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc
gopkg.in/asn1-ber.v1 v1.0.0-20181015200546-f715ec2f112d
gopkg.in/gomail.v2 v2.0.0-20150902115704-41f357289737
gopkg.in/natefinch/lumberjack.v2 v2.0.0-20170531160350-a96e63847dc3
gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce
gopkg.in/olivere/elastic.v5 v5.0.77
gopkg.in/yaml.v2 v2.2.2
)