sshportal/go.mod

34 lines
1.3 KiB
Modula-2
Raw Normal View History

module moul.io/sshportal
2018-11-16 17:24:18 +08:00
require (
2020-06-05 05:46:38 +08:00
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be
2020-05-02 16:14:28 +08:00
github.com/asaskevich/govalidator v0.0.0-20200428143746-21a406dcc535
2020-02-18 07:12:56 +08:00
github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect
2020-05-12 09:30:27 +08:00
github.com/creack/pty v1.1.10 // indirect
2020-02-18 07:12:56 +08:00
github.com/davecgh/go-spew v1.1.1 // indirect
2020-02-29 05:07:09 +08:00
github.com/docker/docker v1.13.1
2018-11-16 17:24:18 +08:00
github.com/dustin/go-humanize v1.0.0
2020-05-02 16:14:28 +08:00
github.com/gliderlabs/ssh v0.3.0
2020-02-18 07:12:56 +08:00
github.com/go-sql-driver/mysql v1.5.0 // indirect
github.com/gopherjs/gopherjs v0.0.0-20181103185306-d547d1d9531e // indirect
2020-02-18 07:12:56 +08:00
github.com/jinzhu/gorm v1.9.12
github.com/kr/pty v1.1.8
2020-05-12 09:30:27 +08:00
github.com/mattn/go-colorable v0.1.6 // indirect
github.com/mattn/go-runewidth v0.0.9 // indirect
2020-02-18 07:12:56 +08:00
github.com/mattn/go-sqlite3 v2.0.3+incompatible // indirect
2018-11-16 17:24:18 +08:00
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b
2020-02-18 07:12:56 +08:00
github.com/olekukonko/tablewriter v0.0.4
github.com/reiver/go-oi v1.0.0
2018-11-16 17:24:18 +08:00
github.com/reiver/go-telnet v0.0.0-20180421082511-9ff0b2ab096e
github.com/sabban/bastion v0.0.0-20180110125408-b9d3c9b1f4d3
github.com/smartystreets/assertions v0.0.0-20190401211740-f487f9de1cd3 // indirect
2020-05-02 16:14:28 +08:00
github.com/smartystreets/goconvey v1.6.4
github.com/urfave/cli v1.22.4
2020-06-05 05:46:38 +08:00
golang.org/x/crypto v0.0.0-20200604202706-70a84ac30bf9
2020-05-12 09:30:27 +08:00
golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25 // indirect
2020-02-18 07:12:56 +08:00
gopkg.in/gormigrate.v1 v1.6.0
2020-02-25 18:49:38 +08:00
moul.io/srand v1.4.0
2018-11-16 17:24:18 +08:00
)
2020-02-29 05:07:09 +08:00
go 1.14