From d1905c67fcb30d06aafa11809cc69fb77aa118fa Mon Sep 17 00:00:00 2001 From: Adam Tauber Date: Wed, 3 Jun 2020 17:29:14 +0200 Subject: [PATCH] [enh] add go.mod file --- go.mod | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 go.mod diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..03516ce --- /dev/null +++ b/go.mod @@ -0,0 +1,21 @@ +module github.com/asciimoo/wuzz + +go 1.14 + +require ( + github.com/BurntSushi/toml v0.3.1 + github.com/PuerkitoBio/goquery v1.5.1 + github.com/alessio/shellescape v1.2.2 + github.com/andybalholm/cascadia v1.2.0 // indirect + github.com/jroimartin/gocui v0.4.0 + github.com/mattn/go-colorable v0.1.6 // indirect + github.com/mattn/go-runewidth v0.0.9 + github.com/mitchellh/go-homedir v1.1.0 + github.com/nsf/termbox-go v0.0.0-20200418040025-38ba6e5628f1 + github.com/nwidger/jsoncolor v0.3.0 + github.com/tidwall/gjson v1.6.0 + github.com/tidwall/pretty v1.0.1 // indirect + github.com/x86kernel/htmlcolor v0.0.0-20190529101448-c589f58466d0 + golang.org/x/net v0.0.0-20200602114024-627f9648deb9 + golang.org/x/sys v0.0.0-20200602225109-6fdc65e7d980 // indirect +)