-
Notifications
You must be signed in to change notification settings - Fork 15
/
go.mod
39 lines (37 loc) · 1.67 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
module github.com/chewxy/lingo
require (
github.com/abiosoft/ishell v2.0.0+incompatible
github.com/abiosoft/readline v0.0.0-20180607040430-155bce2042db // indirect
github.com/awalterschulze/gographviz v0.0.0-20190221210632-1e9ccb565bca
github.com/chewxy/hm v1.0.0 // indirect
github.com/chewxy/math32 v1.0.0 // indirect
github.com/chzyer/logex v1.1.10 // indirect
github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fatih/color v1.7.0 // indirect
github.com/flynn-archive/go-shlex v0.0.0-20150515145356-3f9db97f8568 // indirect
github.com/gogo/protobuf v1.2.1 // indirect
github.com/golang/protobuf v1.2.0 // indirect
github.com/google/flatbuffers v1.10.0 // indirect
github.com/kljensen/snowball v0.6.0
github.com/leesper/go_rng v0.0.0-20171009123644-5344a9259b21 // indirect
github.com/mattn/go-colorable v0.1.1 // indirect
github.com/mattn/go-isatty v0.0.6 // indirect
github.com/pkg/browser v0.0.0-20180916011732-0a3d74bf9ce4
github.com/pkg/errors v0.8.1
github.com/stretchr/testify v1.3.0
github.com/xtgo/set v1.0.0
golang.org/x/exp v0.0.0-20190221220918-438050ddec5e // indirect
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4 // indirect
golang.org/x/sys v0.0.0-20190225065934-cc5685c2db12 // indirect
golang.org/x/text v0.3.0
gonum.org/v1/gonum v0.0.0-20190221132855-8ea67971a689 // indirect
gonum.org/v1/netlib v0.0.0-20190221094214-0632e2ebbd2d // indirect
gorgonia.org/cu v0.9.0-beta // indirect
gorgonia.org/dawson v1.1.0 // indirect
gorgonia.org/gorgonia v0.9.1
gorgonia.org/tensor v0.9.0-beta
gorgonia.org/vecf32 v0.7.0 // indirect
gorgonia.org/vecf64 v0.7.0 // indirect
)
go 1.13