Skip to content

Instantly share code, notes, and snippets.

@dlsniper
Last active March 26, 2018 12:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dlsniper/a2f52499778c4c611299eb84012bb093 to your computer and use it in GitHub Desktop.
Save dlsniper/a2f52499778c4c611299eb84012bb093 to your computer and use it in GitHub Desktop.
dependency versions

dep status

PROJECT                          CONSTRAINT  VERSION   REVISION  LATEST    PKGS USED
github.com/aws/aws-sdk-go        ^1.13.5     v1.13.11  bafcd9c   v1.13.20  29  
github.com/go-ini/ini            v1.33.0     v1.33.0   6333e38   v1.33.0   1   
github.com/jmespath/go-jmespath  *                     0b12d6b             1

dep ensure

// nothing done

From https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md#version

Note: When you specify a version without an operator, dep automatically uses the ^ operator by default. dep ensure will interpret the given version as the min-boundary of a range, for example:

package main
import (
"encoding/json"
"fmt"
"os"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/iot"
"github.com/aws/aws-sdk-go/service/iotdataplane"
)
func main() {
_ = json.Valid
_ = fmt.Printf
_ = os.ErrExist
_ = &aws.Config{}
_, _ = session.NewSession(nil)
_ = iot.New(nil)
_ = iotdataplane.ServiceName
}
# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
[[projects]]
name = "github.com/aws/aws-sdk-go"
packages = [
"aws",
"aws/awserr",
"aws/awsutil",
"aws/client",
"aws/client/metadata",
"aws/corehandlers",
"aws/credentials",
"aws/credentials/ec2rolecreds",
"aws/credentials/endpointcreds",
"aws/credentials/stscreds",
"aws/defaults",
"aws/ec2metadata",
"aws/endpoints",
"aws/request",
"aws/session",
"aws/signer/v4",
"internal/sdkrand",
"internal/shareddefaults",
"private/protocol",
"private/protocol/json/jsonutil",
"private/protocol/jsonrpc",
"private/protocol/query",
"private/protocol/query/queryutil",
"private/protocol/rest",
"private/protocol/restjson",
"private/protocol/xml/xmlutil",
"service/iot",
"service/iotdataplane",
"service/sts"
]
revision = "bafcd9ccc717e9bc5406acaea370577299223873"
version = "v1.13.11"
[[projects]]
name = "github.com/go-ini/ini"
packages = ["."]
revision = "6333e38ac20b8949a8dd68baa3650f4dee8f39f0"
version = "v1.33.0"
[[projects]]
name = "github.com/jmespath/go-jmespath"
packages = ["."]
revision = "0b12d6b5"
[solve-meta]
analyzer-name = "dep"
analyzer-version = 1
inputs-digest = "96ac612ad3b7e8d2337d03dd40b73ff2b4d1456bcc25d524d33f05fc9d845041"
solver-name = "gps-cdcl"
solver-version = 1
[[constraint]]
name = "github.com/aws/aws-sdk-go"
version = "1.13.5"
[prune]
go-tests = true
unused-packages = true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment