73 lines
2.9 KiB
Modula-2
73 lines
2.9 KiB
Modula-2
module r00t2.io/vault_totp
|
|
|
|
go 1.25.5
|
|
|
|
require (
|
|
github.com/chelnak/ysmrr v0.6.0
|
|
github.com/creachadair/otp v0.5.2
|
|
github.com/davecgh/go-spew v1.1.1
|
|
github.com/go-playground/validator/v10 v10.29.0
|
|
github.com/hashicorp/vault-client-go v0.4.3
|
|
github.com/hashicorp/vault/api v1.22.0
|
|
github.com/jessevdk/go-flags v1.6.1
|
|
github.com/makiuchi-d/gozxing v0.1.1
|
|
github.com/mdp/qrterminal/v3 v3.2.1
|
|
github.com/pquerna/otp v1.5.0
|
|
github.com/pterm/pterm v0.12.82
|
|
golang.org/x/mod v0.31.0
|
|
golang.org/x/term v0.38.0
|
|
r00t2.io/gosecret v1.1.5
|
|
r00t2.io/goutils v1.14.0
|
|
r00t2.io/sysutils v1.15.1
|
|
)
|
|
|
|
// https://github.com/chelnak/ysmrr/pull/88
|
|
replace github.com/chelnak/ysmrr v0.6.0 => /opt/dev/third-party/ysmrr
|
|
|
|
require (
|
|
atomicgo.dev/cursor v0.2.0 // indirect
|
|
atomicgo.dev/keyboard v0.2.9 // indirect
|
|
atomicgo.dev/schedule v0.1.0 // indirect
|
|
github.com/boombuler/barcode v1.1.0 // indirect
|
|
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
|
|
github.com/containerd/console v1.0.5 // indirect
|
|
github.com/coreos/go-systemd/v22 v22.6.0 // indirect
|
|
github.com/creachadair/wirepb v0.0.0-20251201055919-954ef89c4c71 // indirect
|
|
github.com/djherbis/times v1.6.0 // indirect
|
|
github.com/fatih/color v1.18.0 // indirect
|
|
github.com/gabriel-vasile/mimetype v1.4.12 // indirect
|
|
github.com/go-jose/go-jose/v4 v4.1.3 // indirect
|
|
github.com/go-playground/locales v0.14.1 // indirect
|
|
github.com/go-playground/universal-translator v0.18.1 // indirect
|
|
github.com/godbus/dbus/v5 v5.2.1 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/gookit/color v1.5.4 // indirect
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
|
|
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
|
github.com/hashicorp/go-retryablehttp v0.7.8 // indirect
|
|
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
|
|
github.com/hashicorp/go-secure-stdlib/parseutil v0.2.0 // indirect
|
|
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2 // indirect
|
|
github.com/hashicorp/go-sockaddr v1.0.7 // indirect
|
|
github.com/hashicorp/hcl v1.0.1-vault-7 // indirect
|
|
github.com/leodido/go-urn v1.4.0 // indirect
|
|
github.com/lithammer/fuzzysearch v1.1.8 // indirect
|
|
github.com/mattn/go-colorable v0.1.14 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/mattn/go-runewidth v0.0.16 // indirect
|
|
github.com/mitchellh/go-homedir v1.1.0 // indirect
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
github.com/rivo/uniseg v0.4.7 // indirect
|
|
github.com/ryanuber/go-glob v1.0.0 // indirect
|
|
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
|
|
golang.org/x/crypto v0.46.0 // indirect
|
|
golang.org/x/net v0.48.0 // indirect
|
|
golang.org/x/sync v0.19.0 // indirect
|
|
golang.org/x/sys v0.39.0 // indirect
|
|
golang.org/x/text v0.32.0 // indirect
|
|
golang.org/x/time v0.14.0 // indirect
|
|
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
|
|
rsc.io/qr v0.2.0 // indirect
|
|
)
|