commit 62c579955335b0d787095e8aa39e610c3d3c1c30
parent 81c49d6ba479ac1da748fc1863b909d17f9f10c9
Author: Jack Mordaunt <jackmordaunt@gmail.com>
Date: Wed, 14 Feb 2018 16:14:23 +0100
[+] Using dep for dependency management.
Diffstat:
3 files changed, 97 insertions(+), 0 deletions(-)
diff --git a/.gitignore b/.gitignore
@@ -1 +1,2 @@
*.DS_Store
+*vendor
+\ No newline at end of file
diff --git a/Gopkg.lock b/Gopkg.lock
@@ -0,0 +1,49 @@
+# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
+
+
+[[projects]]
+ branch = "master"
+ name = "github.com/nfnt/resize"
+ packages = ["."]
+ revision = "891127d8d1b52734debe1b3c3d7e747502b6c366"
+
+[[projects]]
+ name = "github.com/pkg/errors"
+ packages = ["."]
+ revision = "645ef00459ed84a119197bfb8d8205042c6df63d"
+ version = "v0.8.0"
+
+[[projects]]
+ name = "github.com/spf13/afero"
+ packages = [
+ ".",
+ "mem"
+ ]
+ revision = "bb8f1927f2a9d3ab41c9340aa034f6b803f4359c"
+ version = "v1.0.2"
+
+[[projects]]
+ name = "github.com/spf13/pflag"
+ packages = ["."]
+ revision = "e57e3eeb33f795204c1ca35f56c44f83227c6e66"
+ version = "v1.0.0"
+
+[[projects]]
+ branch = "master"
+ name = "golang.org/x/text"
+ packages = [
+ "internal/gen",
+ "internal/triegen",
+ "internal/ucd",
+ "transform",
+ "unicode/cldr",
+ "unicode/norm"
+ ]
+ revision = "4e4a3210bb54bb31f6ab2cdca2edcc0b50c420c1"
+
+[solve-meta]
+ analyzer-name = "dep"
+ analyzer-version = 1
+ inputs-digest = "542c1997350fc6496202a525a2792f1820f9f9ee7c550410442fea03a48da8dc"
+ solver-name = "gps-cdcl"
+ solver-version = 1
diff --git a/Gopkg.toml b/Gopkg.toml
@@ -0,0 +1,46 @@
+# Gopkg.toml example
+#
+# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
+# for detailed Gopkg.toml documentation.
+#
+# required = ["github.com/user/thing/cmd/thing"]
+# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
+#
+# [[constraint]]
+# name = "github.com/user/project"
+# version = "1.0.0"
+#
+# [[constraint]]
+# name = "github.com/user/project2"
+# branch = "dev"
+# source = "github.com/myfork/project2"
+#
+# [[override]]
+# name = "github.com/x/y"
+# version = "2.4.0"
+#
+# [prune]
+# non-go = false
+# go-tests = true
+# unused-packages = true
+
+
+[[constraint]]
+ branch = "master"
+ name = "github.com/nfnt/resize"
+
+[[constraint]]
+ name = "github.com/pkg/errors"
+ version = "0.8.0"
+
+[[constraint]]
+ name = "github.com/spf13/afero"
+ version = "1.0.2"
+
+[[constraint]]
+ name = "github.com/spf13/pflag"
+ version = "1.0.0"
+
+[prune]
+ go-tests = true
+ unused-packages = true