-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
41 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,69 @@ | ||
module github.com/heetch/confita | ||
|
||
go 1.21 | ||
|
||
require ( | ||
github.com/BurntSushi/toml v0.3.1 | ||
github.com/armon/go-metrics v0.0.0-20190430140413-ec5e00d3c878 // indirect | ||
github.com/aws/aws-sdk-go v1.23.20 | ||
github.com/coreos/bbolt v1.3.2 // indirect | ||
github.com/coreos/etcd v3.3.3+incompatible | ||
github.com/hashicorp/consul/api v1.1.0 | ||
github.com/hashicorp/vault/api v1.0.4 | ||
github.com/pkg/errors v0.8.1 | ||
github.com/stretchr/testify v1.4.0 | ||
gopkg.in/yaml.v2 v2.2.2 | ||
) | ||
|
||
require ( | ||
github.com/armon/go-metrics v0.0.0-20190430140413-ec5e00d3c878 // indirect | ||
github.com/coreos/bbolt v1.3.2 // indirect | ||
github.com/coreos/go-semver v0.3.0 // indirect | ||
github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e // indirect | ||
github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect | ||
github.com/dustin/go-humanize v1.0.0 // indirect | ||
github.com/ghodss/yaml v1.0.0 // indirect | ||
github.com/gogo/protobuf v1.2.0 // indirect | ||
github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef // indirect | ||
github.com/golang/protobuf v1.3.1 // indirect | ||
github.com/golang/snappy v0.0.1 // indirect | ||
github.com/google/btree v1.0.0 // indirect | ||
github.com/gorilla/websocket v1.4.0 // indirect | ||
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect | ||
github.com/grpc-ecosystem/grpc-gateway v1.8.6 // indirect | ||
github.com/hashicorp/consul/api v1.1.0 | ||
github.com/hashicorp/errwrap v1.0.0 // indirect | ||
github.com/hashicorp/go-cleanhttp v0.5.1 // indirect | ||
github.com/hashicorp/go-immutable-radix v1.0.0 // indirect | ||
github.com/hashicorp/go-msgpack v0.5.5 // indirect | ||
github.com/hashicorp/vault/api v1.0.4 | ||
github.com/hashicorp/go-multierror v1.0.0 // indirect | ||
github.com/hashicorp/go-retryablehttp v0.5.4 // indirect | ||
github.com/hashicorp/go-rootcerts v1.0.1 // indirect | ||
github.com/hashicorp/go-sockaddr v1.0.2 // indirect | ||
github.com/hashicorp/golang-lru v0.5.1 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/hashicorp/serf v0.8.2 // indirect | ||
github.com/hashicorp/vault/sdk v0.1.13 // indirect | ||
github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af // indirect | ||
github.com/jonboulle/clockwork v0.1.0 // indirect | ||
github.com/pkg/errors v0.8.1 | ||
github.com/kr/pretty v0.1.0 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 // indirect | ||
github.com/mitchellh/mapstructure v1.1.2 // indirect | ||
github.com/pierrec/lz4 v2.0.5+incompatible // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/client_golang v0.9.3-0.20190127221311-3c4408c8b829 // indirect | ||
github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90 // indirect | ||
github.com/ryanuber/go-glob v1.0.0 // indirect | ||
github.com/soheilhy/cmux v0.1.4 // indirect | ||
github.com/stretchr/testify v1.4.0 | ||
github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5 // indirect | ||
github.com/ugorji/go v1.1.4 // indirect | ||
github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect | ||
go.etcd.io/bbolt v1.3.2 // indirect | ||
golang.org/x/crypto v0.0.0-20190506204251-e1dfcc566284 // indirect | ||
golang.org/x/net v0.0.0-20190620200207-3b0461eec859 // indirect | ||
golang.org/x/sys v0.0.0-20190508220229-2d0786266e9c // indirect | ||
gopkg.in/yaml.v2 v2.2.2 | ||
golang.org/x/text v0.3.1-0.20181227161524-e6919f6577db // indirect | ||
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4 // indirect | ||
google.golang.org/genproto v0.0.0-20190404172233-64821d5d2107 // indirect | ||
google.golang.org/grpc v1.22.0 // indirect | ||
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect | ||
gopkg.in/square/go-jose.v2 v2.3.1 // indirect | ||
) | ||
|
||
go 1.12 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters