2022-07-02 16:31:11 +00:00
|
|
|
module github.com/Luzifer/vault-patch
|
|
|
|
|
2024-04-10 16:32:05 +00:00
|
|
|
go 1.22
|
2022-07-02 16:31:11 +00:00
|
|
|
|
|
|
|
require (
|
2024-04-10 16:32:05 +00:00
|
|
|
github.com/Luzifer/go_helpers/v2 v2.24.0
|
|
|
|
github.com/Luzifer/rconfig/v2 v2.5.0
|
|
|
|
github.com/hashicorp/vault/api v1.12.2
|
2022-07-02 16:31:11 +00:00
|
|
|
github.com/mitchellh/go-homedir v1.1.0
|
2024-04-10 16:32:05 +00:00
|
|
|
github.com/sirupsen/logrus v1.9.3
|
2022-07-02 16:31:11 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/cenkalti/backoff/v3 v3.2.2 // indirect
|
2024-04-10 16:32:05 +00:00
|
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
|
|
|
github.com/go-jose/go-jose/v3 v3.0.3 // indirect
|
|
|
|
github.com/go-test/deep v1.1.0 // indirect
|
|
|
|
github.com/google/go-cmp v0.6.0 // indirect
|
2022-07-02 16:31:11 +00:00
|
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
|
|
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
|
2024-04-10 16:32:05 +00:00
|
|
|
github.com/hashicorp/go-hclog v1.6.3 // indirect
|
2022-07-02 16:31:11 +00:00
|
|
|
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
2024-04-10 16:32:05 +00:00
|
|
|
github.com/hashicorp/go-retryablehttp v0.7.5 // indirect
|
2022-07-02 16:31:11 +00:00
|
|
|
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
|
2024-04-10 16:32:05 +00:00
|
|
|
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.8 // indirect
|
2022-07-02 16:31:11 +00:00
|
|
|
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2 // indirect
|
2024-04-10 16:32:05 +00:00
|
|
|
github.com/hashicorp/go-sockaddr v1.0.6 // indirect
|
|
|
|
github.com/hashicorp/hcl v1.0.1-vault-5 // indirect
|
2022-07-02 16:31:11 +00:00
|
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
2024-04-10 16:32:05 +00:00
|
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
2022-07-02 16:31:11 +00:00
|
|
|
github.com/ryanuber/go-glob v1.0.0 // indirect
|
|
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
2024-04-10 16:32:05 +00:00
|
|
|
golang.org/x/crypto v0.22.0 // indirect
|
|
|
|
golang.org/x/net v0.24.0 // indirect
|
|
|
|
golang.org/x/sys v0.19.0 // indirect
|
|
|
|
golang.org/x/text v0.14.0 // indirect
|
|
|
|
golang.org/x/time v0.5.0 // indirect
|
2022-07-02 16:31:11 +00:00
|
|
|
gopkg.in/validator.v2 v2.0.1 // indirect
|
2024-04-10 16:32:05 +00:00
|
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
2022-07-02 16:31:11 +00:00
|
|
|
)
|