diff --git a/.gitignore b/.gitignore index d379f71..53609be 100644 --- a/.gitignore +++ b/.gitignore @@ -3,12 +3,6 @@ *.a *.so -# Environment vars -.env - -# Seed data -users.txt - # Folders _obj _test @@ -48,4 +42,4 @@ prof.mem /**/debug # Goland files -.idea/ \ No newline at end of file +.idea/ diff --git a/Gopkg.lock b/Gopkg.lock index 3ddad40..5e10731 100644 --- a/Gopkg.lock +++ b/Gopkg.lock @@ -23,6 +23,7 @@ "aws/credentials/ec2rolecreds", "aws/credentials/endpointcreds", "aws/credentials/stscreds", + "aws/csm", "aws/defaults", "aws/ec2metadata", "aws/endpoints", @@ -31,6 +32,7 @@ "aws/signer/v4", "internal/sdkio", "internal/sdkrand", + "internal/sdkuri", "internal/shareddefaults", "private/protocol", "private/protocol/json/jsonutil", @@ -46,14 +48,14 @@ "service/kinesis/kinesisiface", "service/sts" ] - revision = "827e7eac8c2680d5bdea7bc3ef29c596eabe1eae" - version = "v1.13.59" + revision = "8475c414b1bd58b8cc214873a8854e3a621e67d7" + version = "v1.15.0" [[projects]] name = "github.com/go-ini/ini" packages = ["."] - revision = "7e7da451323b6766da368f8a1e8ec9a88a16b4a0" - version = "v1.31.1" + revision = "358ee7663966325963d4e8b2e1fbd570c5195153" + version = "v1.38.1" [[projects]] name = "github.com/jmespath/go-jmespath" @@ -91,6 +93,6 @@ [solve-meta] analyzer-name = "dep" analyzer-version = 1 - inputs-digest = "82ad275b394f4727b9d9ad816f534e512b1b007806a4b785d8a742e5836eee48" + inputs-digest = "6b3044ce1b075f919471f2457f32450efaa36518381fd84164641860c296de5a" solver-name = "gps-cdcl" solver-version = 1 diff --git a/Gopkg.toml b/Gopkg.toml index 8cc7dcd..db2218d 100644 --- a/Gopkg.toml +++ b/Gopkg.toml @@ -1,4 +1,3 @@ - # Gopkg.toml example # # Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md @@ -17,8 +16,13 @@ # source = "github.com/myfork/project2" # # [[override]] -# name = "github.com/x/y" -# version = "2.4.0" +# name = "github.com/x/y" +# version = "2.4.0" +# +# [prune] +# non-go = false +# go-tests = true +# unused-packages = true [[constraint]] @@ -27,24 +31,16 @@ [[constraint]] name = "github.com/aws/aws-sdk-go" - version = "1.12.30" - -[[constraint]] - branch = "master" - name = "github.com/bmizerany/assert" - -[[constraint]] - branch = "master" - name = "github.com/crowdmob/goamz" + version = "1.15.0" [[constraint]] branch = "master" name = "github.com/lib/pq" -[[constraint]] - branch = "master" - name = "github.com/tj/go-kinesis" - [[constraint]] name = "gopkg.in/redis.v5" version = "5.2.9" + +[prune] + go-tests = true + unused-packages = true