Skip to content

Commit 4f0cd7e

Browse files
committed
Add package server
1 parent 0fb0203 commit 4f0cd7e

File tree

5 files changed

+648
-137
lines changed

5 files changed

+648
-137
lines changed

go.mod

Lines changed: 21 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,29 @@
11
module resenje.org/web
22

3+
go 1.12
4+
35
require (
4-
cloud.google.com/go v0.37.4 // indirect
5-
github.com/golang/protobuf v1.3.1
6-
github.com/google/btree v1.0.0 // indirect
7-
github.com/google/go-cmp v0.3.0 // indirect
8-
github.com/google/pprof v0.0.0-20190404155422-f8f10df84213 // indirect
9-
github.com/hashicorp/golang-lru v0.5.1 // indirect
10-
github.com/kr/pretty v0.1.0 // indirect
11-
github.com/kr/pty v1.1.4 // indirect
12-
github.com/lucas-clemente/quic-go v0.11.1
6+
github.com/golang/mock v1.3.1 // indirect
7+
github.com/golang/protobuf v1.3.2
8+
github.com/gorilla/handlers v1.4.1
9+
github.com/lucas-clemente/quic-go v0.11.2
10+
github.com/marten-seemann/qtls v0.3.2 // indirect
1311
github.com/onsi/ginkgo v1.8.0 // indirect
1412
github.com/onsi/gomega v1.5.0 // indirect
15-
github.com/tdewolff/minify/v2 v2.4.0
16-
golang.org/x/crypto v0.0.0-20190426145343-a29dc8fdc734 // indirect
17-
golang.org/x/exp v0.0.0-20190429183610-475c5042d3f1 // indirect
18-
golang.org/x/image v0.0.0-20190424155947-59b11bec70c7 // indirect
19-
golang.org/x/lint v0.0.0-20190409202823-959b441ac422 // indirect
20-
golang.org/x/mobile v0.0.0-20190415191353-3e0bab5405d6 // indirect
21-
golang.org/x/net v0.0.0-20190424112056-4829fb13d2c6
22-
golang.org/x/oauth2 v0.0.0-20190402181905-9f3314589c9a // indirect
23-
golang.org/x/sys v0.0.0-20190429190828-d89cdac9e872 // indirect
13+
github.com/prometheus/client_golang v1.0.0
14+
github.com/tdewolff/minify/v2 v2.5.1
15+
github.com/tdewolff/test v1.0.1 // indirect
16+
golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4
17+
golang.org/x/net v0.0.0-20190628185345-da137c7871d7
18+
golang.org/x/sys v0.0.0-20190712062909-fae7ac547cb7 // indirect
2419
golang.org/x/text v0.3.2 // indirect
25-
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4 // indirect
26-
golang.org/x/tools v0.0.0-20190430161608-08ecc9edd986 // indirect
27-
google.golang.org/api v0.4.0 // indirect
28-
google.golang.org/appengine v1.5.0 // indirect
29-
google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb // indirect
30-
google.golang.org/grpc v1.20.1
31-
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
32-
gopkg.in/yaml.v2 v2.2.2 // indirect
33-
honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a // indirect
34-
resenje.org/logging v0.1.3
20+
google.golang.org/genproto v0.0.0-20190716160619-c506a9f90610 // indirect
21+
google.golang.org/grpc v1.22.0
22+
gopkg.in/mail.v2 v2.3.1 // indirect
23+
resenje.org/email v0.1.2
24+
resenje.org/jsonresponse v0.1.2
25+
resenje.org/logging v0.1.5
3526
resenje.org/marshal v0.1.1
27+
resenje.org/recovery v0.1.1
28+
resenje.org/x v0.2.3
3629
)

0 commit comments

Comments
 (0)