This repository has been archived by the owner on Dec 5, 2024. It is now read-only.
forked from gopasspw/gopass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
88 lines (85 loc) · 3.59 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
module github.com/gopasspw/gopass
go 1.22.1
require (
filippo.io/age v1.1.1
github.com/ProtonMail/go-crypto v1.0.0
github.com/atotto/clipboard v0.1.4
github.com/blang/semver/v4 v4.0.0
github.com/caspr-io/yamlpath v0.0.0-20200722075116-502e8d113a9b
github.com/cenkalti/backoff/v4 v4.3.0
github.com/dustin/go-humanize v1.0.1
github.com/ergochat/readline v0.1.0
github.com/fatih/color v1.16.0
github.com/godbus/dbus/v5 v5.1.0
github.com/gokyle/twofactor v1.0.1
github.com/google/go-cmp v0.6.0
github.com/google/go-github/v61 v61.0.0
github.com/gopasspw/gopass-hibp v1.15.12
github.com/hashicorp/golang-lru/v2 v2.0.7
github.com/jsimonetti/pwscheme v0.0.0-20220922140336-67a4d090f150
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
github.com/kbinani/screenshot v0.0.0-20230812210009-b87d31814237
github.com/makiuchi-d/gozxing v0.1.1
github.com/martinhoefling/goxkcdpwgen v0.1.2-0.20231122080842-e51aa57005ca
github.com/mattn/go-colorable v0.1.13
github.com/mattn/go-isatty v0.0.20
github.com/mattn/go-tty v0.0.5
github.com/mitchellh/go-ps v1.0.0
github.com/muesli/crunchy v0.4.0
github.com/nbutton23/zxcvbn-go v0.0.0-20210217022336-fa2cb2858354
github.com/noborus/ov v0.33.3
github.com/pquerna/otp v1.4.0
github.com/schollz/closestmatch v0.0.0-20190308193919-1fbe626be92e
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
github.com/stretchr/testify v1.9.0
github.com/twpayne/go-pinentry v0.3.0
github.com/urfave/cli/v2 v2.27.1
github.com/xhit/go-str2duration/v2 v2.1.0
github.com/zalando/go-keyring v0.2.4
github.com/zeebo/blake3 v0.2.3
golang.org/x/crypto v0.22.0
golang.org/x/exp v0.0.0-20240404231335-c0f41cb1a7a0
golang.org/x/net v0.24.0
golang.org/x/oauth2 v0.19.0
golang.org/x/sys v0.19.0
golang.org/x/term v0.19.0
gopkg.in/yaml.v3 v3.0.1
)
require (
code.rocketnine.space/tslocum/cbind v0.1.5 // indirect
filippo.io/edwards25519 v1.1.0 // indirect
github.com/alessio/shellescape v1.4.2 // indirect
github.com/boombuler/barcode v1.0.1 // indirect
github.com/cloudflare/circl v1.3.7 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect
github.com/danieljoos/wincred v1.2.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/frankban/quicktest v1.14.4 // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/gdamore/encoding v1.0.1 // indirect
github.com/gdamore/tcell/v2 v2.7.4 // indirect
github.com/gen2brain/shm v0.1.0 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/jezek/xgb v1.1.1 // indirect
github.com/jwalton/gchalk v1.3.0 // indirect
github.com/jwalton/go-supportscolor v1.2.0 // indirect
github.com/kjk/lzmadec v0.0.0-20210713164611-19ac3ee91a71 // indirect
github.com/klauspost/compress v1.17.7 // indirect
github.com/klauspost/cpuid/v2 v2.2.7 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/lxn/win v0.0.0-20210218163916-a377121e959e // indirect
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/noborus/guesswidth v0.3.4 // indirect
github.com/pierrec/lz4 v2.6.1+incompatible // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/rs/zerolog v1.32.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/ulikunitz/xz v0.5.12 // indirect
github.com/xrash/smetrics v0.0.0-20240312152122-5f08fbb34913 // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
rsc.io/qr v0.2.0 // indirect
)