-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgo.mod
42 lines (39 loc) · 1.64 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
40
41
42
module github.com/42wim/ssh-agentx
go 1.21
require (
github.com/ProtonMail/go-crypto v0.0.0-20210408094314-bf0c5240ed99
github.com/buptczq/WinCryptSSHAgent v1.1.8
github.com/go-piv/piv-go v1.11.0
github.com/pkg/errors v0.9.1
github.com/spf13/viper v1.7.1
github.com/twpayne/go-pinentry-minimal v0.0.0-20220113210447-2a5dc4396c2a
golang.org/x/crypto v0.22.0
)
require (
github.com/Microsoft/go-winio v0.4.16 // indirect
github.com/bi-zone/go-ole v1.2.5 // indirect
github.com/bi-zone/wmi v1.1.4 // indirect
github.com/fsnotify/fsnotify v1.4.7 // indirect
github.com/go-ole/go-ole v1.2.4 // indirect
github.com/hashicorp/errwrap v1.0.0 // indirect
github.com/hashicorp/go-multierror v1.0.0 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/hattya/go.notify v0.0.0-20200507123844-18670158b53e // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/linuxkit/virtsock v0.0.0-20180830132707-8e79449dea07 // indirect
github.com/magiconair/properties v1.8.1 // indirect
github.com/mitchellh/mapstructure v1.1.2 // indirect
github.com/pelletier/go-toml v1.2.0 // indirect
github.com/rogpeppe/go-internal v1.12.0 // indirect
github.com/scjalliance/comshim v0.0.0-20190308082608-cf06d2532c4e // indirect
github.com/spf13/afero v1.1.2 // indirect
github.com/spf13/cast v1.4.1 // indirect
github.com/spf13/jwalterweatherman v1.0.0 // indirect
github.com/spf13/pflag v1.0.3 // indirect
github.com/stretchr/testify v1.9.0 // indirect
github.com/subosito/gotenv v1.2.0 // indirect
golang.org/x/sys v0.19.0 // indirect
golang.org/x/text v0.14.0 // indirect
gopkg.in/ini.v1 v1.51.0 // indirect
gopkg.in/yaml.v2 v2.2.4 // indirect
)