forked from teambition/gear
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
40 lines (38 loc) · 1.99 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
module github.com/teambition/gear
require (
github.com/BurntSushi/toml v0.3.1 // indirect
github.com/GitbookIO/mimedb v0.0.0-20180329142916-39fdfdb4def4 // indirect
github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd // indirect
github.com/dimfeld/httptreemux v5.0.1+incompatible // indirect
github.com/globalsign/mgo v0.0.0-20181015135952-eeefdecb41b8
github.com/go-http-utils/cookie v1.3.1
github.com/go-http-utils/negotiator v1.0.0
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect
github.com/golang/protobuf v1.2.0 // indirect
github.com/gorilla/websocket v1.4.0 // indirect
github.com/julienschmidt/httprouter v1.2.0 // indirect
github.com/kr/pretty v0.1.0 // indirect
github.com/mailgun/timetools v0.0.0-20170619190023-f3a7b8ffff47 // indirect
github.com/pelletier/go-toml v1.2.0
github.com/sirupsen/logrus v1.2.0 // indirect
github.com/stretchr/testify v1.2.2
github.com/teambition/compressible-go v1.0.1
github.com/teambition/trie-mux v1.4.2
github.com/vulcand/oxy v0.0.0-20181019102601-ac21a760928b
golang.org/x/net v0.0.0-20181102091132-c10e9556a7bc
golang.org/x/text v0.3.1-0.20181010134911-4d1c5fb19474 // indirect
google.golang.org/genproto v0.0.0-20181016170114-94acd270e44e // indirect
google.golang.org/grpc v1.14.0
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
gopkg.in/mgo.v2 v2.0.0-20180705113604-9856a29383ce // indirect
gopkg.in/yaml.v2 v2.2.1 // indirect
)
replace (
golang.org/x/crypto => github.com/golang/crypto v0.0.0-20181030102418-4d3f4d9ffa16
golang.org/x/net => github.com/golang/net v0.0.0-20181102091132-c10e9556a7bc
golang.org/x/sys => github.com/golang/sys v0.0.0-20181031143558-9b800f95dbbc
golang.org/x/text => github.com/golang/text v0.3.1-0.20181010134911-4d1c5fb19474
golang.org/x/tools => github.com/golang/tools v0.0.0-20181016205153-5ef16f43e633
google.golang.org/genproto => github.com/google/go-genproto v0.0.0-20181016170114-94acd270e44e
google.golang.org/grpc => github.com/grpc/grpc-go v1.14.0
)