Skip to content

Commit 0e768f6

Browse files
author
Bryan C. Mills
committed
all: add module definitions
I computed these using a build of the Go toolchain from a working copy at https://golang.org/cl/128136, patchset 12. The versions selected by 'go mod tidy' needed two tweaks to pass tests: go get golang.org/x/text@master go get github.com/russross/blackfriday@v1 The x/text version bump is because the last tagged version (v0.3.0) is very old (last December). The blackfriday bump is because the repository made a breaking change (v2.0.0) without changing the import path. With those changes, 'go test ./...' passes at the repo root. ('go test all' fails, possibly due to golang/go#26279.) Updates golang/go#26279. Updates golang/go#26872. Change-Id: Ieac5327e4bddd2b78b981d7683beb98608708a3a Reviewed-on: https://go-review.googlesource.com/128636 Reviewed-by: Brad Fitzpatrick <[email protected]>
1 parent 843fd88 commit 0e768f6

File tree

2 files changed

+234
-0
lines changed

2 files changed

+234
-0
lines changed

go.mod

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
module golang.org/x/build
2+
3+
require (
4+
cloud.google.com/go v0.26.0
5+
contrib.go.opencensus.io/exporter/stackdriver v0.5.0 // indirect
6+
dmitri.shuralyov.com/html/belt v0.0.0-20180602232347-f7d459c86be0 // indirect
7+
dmitri.shuralyov.com/state v0.0.0-20180228185332-28bcc343414c // indirect
8+
github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239 // indirect
9+
github.com/bradfitz/go-smtpd v0.0.0-20170404230938-deb6d6237625
10+
github.com/coreos/go-systemd v0.0.0-20180705093442-88bfeed483d3
11+
github.com/davecgh/go-spew v1.1.0
12+
github.com/dustin/go-humanize v0.0.0-20180713052910-9f541cc9db5d // indirect
13+
github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568 // indirect
14+
github.com/fsnotify/fsnotify v1.4.7 // indirect
15+
github.com/gliderlabs/ssh v0.1.1
16+
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect
17+
github.com/golang/protobuf v1.1.0
18+
github.com/google/go-cmp v0.2.0
19+
github.com/google/go-github v16.0.0+incompatible
20+
github.com/google/go-querystring v0.0.0-20170111101155-53e6ce116135 // indirect
21+
github.com/google/martian v2.0.0-beta.2+incompatible // indirect
22+
github.com/googleapis/gax-go v2.0.0+incompatible // indirect
23+
github.com/gopherjs/gopherjs v0.0.0-20180628210949-0892b62f0d9f // indirect
24+
github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7
25+
github.com/jellevandenhooff/dkim v0.0.0-20150330215556-f50fe3d243e1
26+
github.com/kisielk/gotool v1.0.0 // indirect
27+
github.com/kr/pretty v0.1.0 // indirect
28+
github.com/kr/pty v1.1.2
29+
github.com/microcosm-cc/bluemonday v1.0.0 // indirect
30+
github.com/neelance/astrewrite v0.0.0-20160511093645-99348263ae86 // indirect
31+
github.com/neelance/sourcemap v0.0.0-20151028013722-8c68805598ab // indirect
32+
github.com/pmezard/go-difflib v1.0.0 // indirect
33+
github.com/russross/blackfriday v1.5.1 // indirect
34+
github.com/sergi/go-diff v1.0.0 // indirect
35+
github.com/shurcooL/component v0.0.0-20170202220835-f88ec8f54cc4 // indirect
36+
github.com/shurcooL/events v0.0.0-20180517181903-37636e399bf5 // indirect
37+
github.com/shurcooL/github_flavored_markdown v0.0.0-20180602233135-8913699a52e3 // indirect
38+
github.com/shurcooL/go v0.0.0-20180423040247-9e1955d9fb6e // indirect
39+
github.com/shurcooL/go-goon v0.0.0-20170922171312-37c2f522c041 // indirect
40+
github.com/shurcooL/gofontwoff v0.0.0-20180329035133-29b52fc0a18d
41+
github.com/shurcooL/gopherjslib v0.0.0-20160914041154-feb6d3990c2c // indirect
42+
github.com/shurcooL/highlight_diff v0.0.0-20170515013008-09bb4053de1b // indirect
43+
github.com/shurcooL/highlight_go v0.0.0-20170515013102-78fb10f4a5f8 // indirect
44+
github.com/shurcooL/htmlg v0.0.0-20170918183704-d01228ac9e50 // indirect
45+
github.com/shurcooL/httperror v0.0.0-20170206035902-86b7830d14cc // indirect
46+
github.com/shurcooL/httpfs v0.0.0-20171119174359-809beceb2371 // indirect
47+
github.com/shurcooL/httpgzip v0.0.0-20180522190206-b1c53ac65af9
48+
github.com/shurcooL/issues v0.0.0-20180509033703-c5ffda838306
49+
github.com/shurcooL/issuesapp v0.0.0-20180602232740-048589ce2241
50+
github.com/shurcooL/notifications v0.0.0-20180509033327-dff011de8119 // indirect
51+
github.com/shurcooL/octicon v0.0.0-20180602230221-c42b0e3b24d9 // indirect
52+
github.com/shurcooL/reactions v0.0.0-20180602233045-253d879cae26 // indirect
53+
github.com/shurcooL/sanitized_anchor_name v0.0.0-20170918181015-86672fcb3f95 // indirect
54+
github.com/shurcooL/users v0.0.0-20180125191416-49c67e49c537 // indirect
55+
github.com/shurcooL/webdavfs v0.0.0-20170829043945-18c3829fa133 // indirect
56+
github.com/sourcegraph/annotate v0.0.0-20160123013949-f4cad6c6324d // indirect
57+
github.com/sourcegraph/syntaxhighlight v0.0.0-20170531221838-bd320f5d308e // indirect
58+
github.com/stretchr/testify v1.2.2 // indirect
59+
github.com/tarm/serial v0.0.0-20180114052751-eaafced92e96
60+
go.opencensus.io v0.14.0 // indirect
61+
go4.org v0.0.0-20180417224846-9599cf28b011
62+
golang.org/x/crypto v0.0.0-20180807104621-f027049dab0a
63+
golang.org/x/net v0.0.0-20180808004115-f9ce57c11b24
64+
golang.org/x/oauth2 v0.0.0-20180724155351-3d292e4d0cdc
65+
golang.org/x/perf v0.0.0-20180704124530-6e6d33e29852
66+
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f
67+
golang.org/x/sys v0.0.0-20180807162357-acbc56fc7007
68+
golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2 // indirect
69+
golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2
70+
golang.org/x/tools v0.0.0-20180807205940-ca6481ae5650
71+
google.golang.org/api v0.0.0-20180808000436-6e1e03fd226b
72+
google.golang.org/appengine v1.1.0
73+
google.golang.org/genproto v0.0.0-20180731170733-daca94659cb5
74+
google.golang.org/grpc v1.14.0 // indirect
75+
gopkg.in/inf.v0 v0.9.1
76+
grpc.go4.org v0.0.0-20170609214715-11d0a25b4919
77+
)

0 commit comments

Comments
 (0)