From 55122ab24dc38afe76c9a7ea1874313f4fa004ee Mon Sep 17 00:00:00 2001 From: Dan Wolf Date: Thu, 1 Feb 2018 18:06:48 -0500 Subject: [PATCH] migrate to dep --- .gitignore | 1 + Gopkg.lock | 39 +++++++++++++++++++++++++++++++++++++++ Gopkg.toml | 30 ++++++++++++++++++++++++++++++ README.md | 2 ++ 4 files changed, 72 insertions(+) create mode 100644 Gopkg.lock create mode 100644 Gopkg.toml diff --git a/.gitignore b/.gitignore index e7e1a35..db76ec7 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,7 @@ debug # dependencies /node_modules +/vendor # IDEs and editors /.idea diff --git a/Gopkg.lock b/Gopkg.lock new file mode 100644 index 0000000..66cc657 --- /dev/null +++ b/Gopkg.lock @@ -0,0 +1,39 @@ +# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'. + + +[[projects]] + name = "github.com/asdine/storm" + packages = [".","codec","codec/gob","codec/json","index","internal","q"] + revision = "dbd37722730b6cb703b5bd825c3f142d87358525" + version = "v2.0.0" + +[[projects]] + name = "github.com/coreos/bbolt" + packages = ["."] + revision = "583e8937c61f1af6513608ccc75c97b6abdf4ff9" + version = "v1.3.0" + +[[projects]] + name = "github.com/satori/go.uuid" + packages = ["."] + revision = "879c5887cd475cd7864858769793b2ceb0d44feb" + version = "v1.1.0" + +[[projects]] + branch = "master" + name = "golang.org/x/crypto" + packages = ["bcrypt","blowfish"] + revision = "0fcca4842a8d74bfddc2c96a073bd2a4d2a7a2e8" + +[[projects]] + branch = "master" + name = "golang.org/x/sys" + packages = ["unix"] + revision = "a3f2cbd54cf5dfe3fbaccf76375fdb12f67654c8" + +[solve-meta] + analyzer-name = "dep" + analyzer-version = 1 + inputs-digest = "2885c930cafefc895cb0a83389e22ba77c17aeef854681b620ef64faa9678d16" + solver-name = "gps-cdcl" + solver-version = 1 diff --git a/Gopkg.toml b/Gopkg.toml new file mode 100644 index 0000000..673d665 --- /dev/null +++ b/Gopkg.toml @@ -0,0 +1,30 @@ + +# 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" + + +[[constraint]] + name = "github.com/asdine/storm" + version = "2.0.0" + +[[constraint]] + name = "github.com/satori/go.uuid" + version = "1.1.0" diff --git a/README.md b/README.md index 388c48e..fc61922 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ This repo contains source code for my personal website which I try to add to in tiny regular increments. While I don't intend to focus upon only features that will be used by a wider audience, I will respond to issues, assist in understanding code, and (once I have something functional) consider splitting off smaller packages that are meant to be reused as libraries or separate applications--such as the blog itself. +The contents of this document should be taken with only light consideration as I am in the process of reworking the + ## Install ```