Update go dep and prune unused packages

This commit is contained in:
Harlow Ward 2018-07-28 22:58:40 -07:00
parent fb98fbe244
commit 911282363e
3 changed files with 20 additions and 28 deletions

8
.gitignore vendored
View file

@ -3,12 +3,6 @@
*.a *.a
*.so *.so
# Environment vars
.env
# Seed data
users.txt
# Folders # Folders
_obj _obj
_test _test
@ -48,4 +42,4 @@ prof.mem
/**/debug /**/debug
# Goland files # Goland files
.idea/ .idea/

12
Gopkg.lock generated
View file

@ -23,6 +23,7 @@
"aws/credentials/ec2rolecreds", "aws/credentials/ec2rolecreds",
"aws/credentials/endpointcreds", "aws/credentials/endpointcreds",
"aws/credentials/stscreds", "aws/credentials/stscreds",
"aws/csm",
"aws/defaults", "aws/defaults",
"aws/ec2metadata", "aws/ec2metadata",
"aws/endpoints", "aws/endpoints",
@ -31,6 +32,7 @@
"aws/signer/v4", "aws/signer/v4",
"internal/sdkio", "internal/sdkio",
"internal/sdkrand", "internal/sdkrand",
"internal/sdkuri",
"internal/shareddefaults", "internal/shareddefaults",
"private/protocol", "private/protocol",
"private/protocol/json/jsonutil", "private/protocol/json/jsonutil",
@ -46,14 +48,14 @@
"service/kinesis/kinesisiface", "service/kinesis/kinesisiface",
"service/sts" "service/sts"
] ]
revision = "827e7eac8c2680d5bdea7bc3ef29c596eabe1eae" revision = "8475c414b1bd58b8cc214873a8854e3a621e67d7"
version = "v1.13.59" version = "v1.15.0"
[[projects]] [[projects]]
name = "github.com/go-ini/ini" name = "github.com/go-ini/ini"
packages = ["."] packages = ["."]
revision = "7e7da451323b6766da368f8a1e8ec9a88a16b4a0" revision = "358ee7663966325963d4e8b2e1fbd570c5195153"
version = "v1.31.1" version = "v1.38.1"
[[projects]] [[projects]]
name = "github.com/jmespath/go-jmespath" name = "github.com/jmespath/go-jmespath"
@ -91,6 +93,6 @@
[solve-meta] [solve-meta]
analyzer-name = "dep" analyzer-name = "dep"
analyzer-version = 1 analyzer-version = 1
inputs-digest = "82ad275b394f4727b9d9ad816f534e512b1b007806a4b785d8a742e5836eee48" inputs-digest = "6b3044ce1b075f919471f2457f32450efaa36518381fd84164641860c296de5a"
solver-name = "gps-cdcl" solver-name = "gps-cdcl"
solver-version = 1 solver-version = 1

View file

@ -1,4 +1,3 @@
# Gopkg.toml example # Gopkg.toml example
# #
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md # Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
@ -17,8 +16,13 @@
# source = "github.com/myfork/project2" # source = "github.com/myfork/project2"
# #
# [[override]] # [[override]]
# name = "github.com/x/y" # name = "github.com/x/y"
# version = "2.4.0" # version = "2.4.0"
#
# [prune]
# non-go = false
# go-tests = true
# unused-packages = true
[[constraint]] [[constraint]]
@ -27,24 +31,16 @@
[[constraint]] [[constraint]]
name = "github.com/aws/aws-sdk-go" name = "github.com/aws/aws-sdk-go"
version = "1.12.30" version = "1.15.0"
[[constraint]]
branch = "master"
name = "github.com/bmizerany/assert"
[[constraint]]
branch = "master"
name = "github.com/crowdmob/goamz"
[[constraint]] [[constraint]]
branch = "master" branch = "master"
name = "github.com/lib/pq" name = "github.com/lib/pq"
[[constraint]]
branch = "master"
name = "github.com/tj/go-kinesis"
[[constraint]] [[constraint]]
name = "gopkg.in/redis.v5" name = "gopkg.in/redis.v5"
version = "5.2.9" version = "5.2.9"
[prune]
go-tests = true
unused-packages = true