-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathgo.mod
26 lines (24 loc) · 959 Bytes
/
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
module github.com/vadv/gopher-lua-libs
go 1.16
require (
github.com/alessio/shellescape v1.4.1
github.com/aws/aws-sdk-go v1.34.0
github.com/cbroglie/mustache v1.0.1
github.com/cheggaaa/pb/v3 v3.0.5
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e
github.com/dustin/go-humanize v1.0.0
github.com/go-sql-driver/mysql v1.5.0
github.com/lib/pq v1.10.9
github.com/mattn/go-sqlite3 v1.14.3
github.com/mitchellh/mapstructure v1.3.2 // indirect
github.com/montanaflynn/stats v0.6.3
github.com/prometheus/client_golang v1.11.1
github.com/stretchr/testify v1.5.1
github.com/technoweenie/multipartstreamer v1.0.1
github.com/yuin/gluamapper v0.0.0-20150323120927-d836955830e7
github.com/yuin/gopher-lua v0.0.0-20200816102855-ee81675732da
golang.org/x/sync v0.0.0-20201207232520-09787c993a3a
golang.org/x/sys v0.0.0-20220328115105-d36c6a25d886 // indirect
gopkg.in/xmlpath.v2 v2.0.0-20150820204837-860cbeca3ebc
gopkg.in/yaml.v2 v2.3.0
)