-
Notifications
You must be signed in to change notification settings - Fork 3
/
go.mod
34 lines (29 loc) · 1.26 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
module github.com/mostfunkyduck/kp
go 1.21
require (
github.com/AlecAivazis/survey/v2 v2.3.6
github.com/abiosoft/readline v0.0.0-20180607040430-155bce2042db
github.com/atotto/clipboard v0.1.4
github.com/sethvargo/go-password v0.2.0
github.com/tobischo/gokeepasslib/v3 v3.1.0 // cannot be upgraded past v3.1.0 due to a bug in encoding
zombiezen.com/go/sandpass v1.1.0
)
require (
github.com/mostfunkyduck/ishell v0.0.0-20230416142217-6b0f1edba07f
golang.org/x/text v0.21.0
)
require (
github.com/aead/argon2 v0.0.0-20180111183520-a87724528b07 // indirect
github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da // indirect
github.com/chzyer/logex v1.2.1 // indirect
github.com/fatih/color v1.15.0 // indirect
github.com/flynn-archive/go-shlex v0.0.0-20150515145356-3f9db97f8568 // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.18 // indirect
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
golang.org/x/crypto v0.31.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/term v0.27.0 // indirect
)
replace zombiezen.com/go/sandpass => github.com/mostfunkyduck/sandpass v1.1.1-0.20200617090953-4e7550e75911