glide yaml and lock

glide yaml file to spell out dependencies at current versions. (glide get github.com/spf13/viper)

glide lock file to pin current versions (glide install ready against current master)
This commit is contained in:
Byron Kam 2017-08-18 17:38:05 -07:00
parent c706d52c9c
commit f1d4c8e75a
2 changed files with 128 additions and 0 deletions

108
glide.lock generated Normal file
View file

@ -0,0 +1,108 @@
hash: f32262fd0a5e550cc9f264743c7b434c1d1cdcda71bb8e67e860d96bc665e073
updated: 2017-08-18T16:44:37.728341283-07:00
imports:
- name: github.com/armon/consul-api
version: dcfedd50ed5334f96adee43fc88518a4f095e15c
- name: github.com/coreos/etcd
version: 3e32cd3877db239ff726c6f2049601ea53b9c935
subpackages:
- client
- pkg/pathutil
- pkg/srv
- pkg/types
- version
- name: github.com/coreos/go-semver
version: 8ab6407b697782a06568d4b7f1db25550ec2e4c6
subpackages:
- semver
- name: github.com/fsnotify/fsnotify
version: 4da3e2cfbabc9f751898f250b49f2439785783a1
- name: github.com/hashicorp/hcl
version: 392dba7d905ed5d04a5794ba89f558b27e2ba1ca
subpackages:
- hcl/ast
- hcl/parser
- hcl/scanner
- hcl/strconv
- hcl/token
- json/parser
- json/scanner
- json/token
- name: github.com/kr/fs
version: 2788f0dbd16903de03cb8186e5c7d97b69ad387b
- name: github.com/magiconair/properties
version: be5ece7dd465ab0765a9682137865547526d1dfb
- name: github.com/mitchellh/mapstructure
version: d0303fe809921458f417bcf828397a65db30a7e4
- name: github.com/pelletier/go-toml
version: 4692b8f9babfc93db58cc592ba2689d8736781de
- name: github.com/pkg/errors
version: 839d9e913e063e28dfd0e6c7b7512793e0a48be9
- name: github.com/pkg/sftp
version: 4d0e916071f68db74f8a73926335f809396d6b42
- name: github.com/spf13/afero
version: 52e4a6cfac46163658bd4f123c49b6ee7dc75f78
subpackages:
- mem
- sftp
- name: github.com/spf13/cast
version: acbeb36b902d72a7a4c18e8f3241075e7ab763e4
- name: github.com/spf13/jwalterweatherman
version: 0efa5202c04663c757d84f90f5219c1250baf94f
- name: github.com/spf13/pflag
version: e57e3eeb33f795204c1ca35f56c44f83227c6e66
- name: github.com/ugorji/go
version: ded73eae5db7e7a0ef6f55aace87a2873c5d2b74
subpackages:
- codec
- name: github.com/xordataexchange/crypt
version: b2862e3d0a775f18c7cfe02273500ae307b61218
subpackages:
- backend
- backend/consul
- backend/etcd
- config
- encoding/secconf
- name: golang.org/x/crypto
version: 1351f936d976c60a0a48d728281922cf63eafb8d
subpackages:
- cast5
- openpgp
- openpgp/armor
- openpgp/elgamal
- openpgp/errors
- openpgp/packet
- openpgp/s2k
- ssh
- name: golang.org/x/net
version: c8c74377599bd978aee1cf3b9b63a8634051cec2
subpackages:
- context
- http2
- http2/hpack
- internal/timeseries
- trace
- name: golang.org/x/sys
version: c200b10b5d5e122be351b67af224adc6128af5bf
subpackages:
- unix
- name: golang.org/x/text
version: 16e1d1f27f7aba51c74c0aeb7a7ee31a75c5c63c
subpackages:
- transform
- unicode/norm
- name: gopkg.in/yaml.v2
version: eb3733d160e74a9c7e442f435eb3bea458e1d19f
testImports:
- name: github.com/davecgh/go-spew
version: 6d212800a42e8ab5c146b8ace3490ee17e5225f9
subpackages:
- spew
- name: github.com/pmezard/go-difflib
version: d8ed2627bdf02c080bf22230dbb337003b7aba2d
subpackages:
- difflib
- name: github.com/stretchr/testify
version: 976c720a22c8eb4eb6a0b4348ad85ad12491a506
subpackages:
- assert

20
glide.yaml Normal file
View file

@ -0,0 +1,20 @@
package: github.com/spf13/viper
import:
- package: github.com/fsnotify/fsnotify
- package: github.com/hashicorp/hcl
- package: github.com/magiconair/properties
- package: github.com/mitchellh/mapstructure
- package: github.com/pelletier/go-toml
- package: github.com/spf13/afero
- package: github.com/spf13/cast
- package: github.com/spf13/jwalterweatherman
- package: github.com/spf13/pflag
- package: github.com/spf13/viper
- package: github.com/xordataexchange/crypt
subpackages:
- config
- package: gopkg.in/yaml.v2
testImport:
- package: github.com/stretchr/testify
subpackages:
- assert