Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit c2d8080

Browse files
committed
add go.mod
1 parent e3aab42 commit c2d8080

File tree

2 files changed

+442
-0
lines changed

2 files changed

+442
-0
lines changed

go.mod

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
module github.com/sourcegraph/go-langserver
2+
3+
go 1.14
4+
5+
require (
6+
github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd // indirect
7+
github.com/die-net/lrucache v0.0.0-20190707192454-883874fe3947
8+
github.com/fhs/go-netrc v1.0.0
9+
github.com/gorilla/websocket v1.4.1
10+
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79
11+
github.com/hashicorp/go-multierror v1.1.0
12+
github.com/hashicorp/golang-lru v0.5.4
13+
github.com/keegancsmith/tmpfriend v0.0.0-20180423180255-86e88902a513
14+
github.com/lightstep/lightstep-tracer-go v0.20.0
15+
github.com/mattn/go-colorable v0.1.6 // indirect
16+
github.com/neelance/parallel v0.0.0-20160708114440-4de9ce63d14c
17+
github.com/opentracing/basictracer-go v1.0.0
18+
github.com/opentracing/opentracing-go v1.1.0
19+
github.com/pelletier/go-toml v1.6.0
20+
github.com/pkg/errors v0.8.1
21+
github.com/pmezard/go-difflib v1.0.0
22+
github.com/prometheus/client_golang v1.5.1
23+
github.com/slimsag/godocmd v0.0.0-20161025000126-a1005ad29fe3
24+
github.com/sourcegraph/ctxvfs v0.0.0-20180418081416-2b65f1b1ea81
25+
github.com/sourcegraph/go-lsp v0.0.0-20200117082640-b19bb38222e2
26+
github.com/sourcegraph/jsonrpc2 v0.0.0-20191222043438-96c4efab7ee2
27+
github.com/sourcegraph/jsonx v0.0.0-20190114210550-ba8cb36a8614
28+
github.com/uber/jaeger-client-go v2.22.1+incompatible
29+
github.com/uber/jaeger-lib v2.2.0+incompatible
30+
go.uber.org/atomic v1.6.0 // indirect
31+
go4.org v0.0.0-20200312051459-7028f7b4a332
32+
golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e
33+
golang.org/x/tools v0.0.0-20200401192744-099440627f01
34+
gopkg.in/inconshreveable/log15.v2 v2.0.0-20200109203555-b30bc20e4fd1
35+
gopkg.in/yaml.v2 v2.2.5
36+
)

0 commit comments

Comments
 (0)