-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
28 lines (24 loc) · 830 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
27
28
module github.com/kayuii/ssh-import-go
go 1.18
require (
github.com/mitchellh/go-homedir v1.1.0
github.com/ogier/pflag v0.0.1
github.com/rs/zerolog v1.26.1
github.com/urfave/cli/v2 v2.8.1
)
require (
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/urfave/cli v1.22.9 // indirect
golang.org/x/net v0.0.0-20211029224645-99673261e6eb // indirect
)
require (
github.com/BurntSushi/toml v1.1.0 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect
github.com/go-cmd/cmd v1.4.1
github.com/go-resty/resty/v2 v2.7.0
github.com/json-iterator/go v1.1.12
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)