Skip to content
This repository has been archived by the owner on Feb 24, 2024. It is now read-only.

Commit

Permalink
vgo
Browse files Browse the repository at this point in the history
  • Loading branch information
markbates committed Jun 22, 2018
1 parent c6dd9fc commit c132324
Show file tree
Hide file tree
Showing 7 changed files with 329 additions and 120 deletions.
154 changes: 153 additions & 1 deletion Gopkg.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,125 @@
required = ["github.com/russross/blackfriday"]
# Gopkg.toml example
#
# Refer to https://golang.github.io/dep/docs/Gopkg.toml.html
# 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]]
name = "github.com/dgrijalva/jwt-go"
version = "3.2.0"

[[constraint]]
branch = "master"
name = "github.com/dustin/go-humanize"

[[constraint]]
name = "github.com/fatih/color"
version = "1.7.0"

[[constraint]]
name = "github.com/gobuffalo/envy"
version = "1.6.3"

[[constraint]]
name = "github.com/gobuffalo/makr"
version = "1.1.0"

[[constraint]]
name = "github.com/gobuffalo/packr"
version = "1.11.1"

[[constraint]]
name = "github.com/gobuffalo/plush"
version = "3.7.5"

[[constraint]]
name = "github.com/gobuffalo/pop"
version = "4.5.9"

[[constraint]]
name = "github.com/gobuffalo/tags"
version = "2.0.5"

[[constraint]]
name = "github.com/gobuffalo/uuid"
version = "2.0.0"

[[constraint]]
branch = "master"
name = "github.com/gobuffalo/x"

[[constraint]]
name = "github.com/gorilla/context"
version = "1.1.1"

[[constraint]]
name = "github.com/gorilla/mux"
version = "1.6.2"

[[constraint]]
name = "github.com/gorilla/sessions"
version = "1.1.1"

[[constraint]]
name = "github.com/markbates/deplist"
version = "1.0.0"

[[constraint]]
name = "github.com/markbates/going"
version = "1.0.0"

[[constraint]]
name = "github.com/markbates/grift"
version = "1.0.0"

[[constraint]]
name = "github.com/markbates/inflect"
version = "1.0.0"

[[constraint]]
name = "github.com/markbates/refresh"
version = "1.4.0"

[[constraint]]
name = "github.com/markbates/sigtx"
version = "1.0.0"

[[constraint]]
name = "github.com/markbates/willie"
version = "1.0.0"

[[constraint]]
name = "github.com/monoculum/formam"
version = "3.0.0"

[[constraint]]
name = "github.com/nicksnyder/go-i18n"
version = "1.10.0"

[[constraint]]
name = "github.com/pkg/errors"
version = "0.8.0"

[[constraint]]
branch = "master"
Expand All @@ -8,3 +129,34 @@ required = ["github.com/russross/blackfriday"]
branch = "master"
name = "github.com/shurcooL/github_flavored_markdown"

[[constraint]]
name = "github.com/sirupsen/logrus"
version = "1.0.5"

[[constraint]]
name = "github.com/spf13/cobra"
version = "0.0.3"

[[constraint]]
name = "github.com/stretchr/testify"
version = "1.2.2"

[[constraint]]
branch = "master"
name = "github.com/unrolled/secure"

[[constraint]]
branch = "master"
name = "golang.org/x/crypto"

[[constraint]]
branch = "master"
name = "golang.org/x/sync"

[[constraint]]
name = "gopkg.in/mail.v2"
version = "2.2.0"

[prune]
go-tests = true
unused-packages = true
55 changes: 20 additions & 35 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,57 +1,42 @@
module github.com/gobuffalo/buffalo

require (
github.com/ajg/form v0.0.0-20160802194845-cc2954064ec9
github.com/dgrijalva/jwt-go v0.0.0-20180308231308-06ea1031745c
github.com/dustin/go-humanize v0.0.0-20180421182945-02af3965c54e
github.com/fatih/color v1.7.0
github.com/fatih/structs v1.0.0
github.com/fsnotify/fsnotify v1.4.7
github.com/go-sql-driver/mysql v1.4.0
github.com/gobuffalo/envy v1.6.2
github.com/gobuffalo/envy v1.6.3
github.com/gobuffalo/packr v1.11.1
github.com/gobuffalo/plush v1.0.0
github.com/gobuffalo/pop v0.0.0-20180524161724-d5d017d59cf2
github.com/gobuffalo/tags v1.9.6
github.com/gobuffalo/validate v1.0.0
github.com/gobuffalo/plush v0.0.0-20180611194646-6cd5bf0d0c9b
github.com/gobuffalo/pop v0.0.0-20180521154020-9985012f32f5
github.com/gobuffalo/x v0.0.0-20180117215853-11ca13c05abd
github.com/gorilla/mux v1.6.2
github.com/gorilla/sessions v1.1.1
github.com/gorilla/websocket v1.2.0
github.com/jmoiron/sqlx v0.0.0-20180406164412-2aeb6a910c2b
github.com/jmoiron/sqlx v0.0.0-20180614180643-0dae4fefe7c0
github.com/lib/pq v0.0.0-20180523175426-90697d60dd84
github.com/markbates/deplist v0.0.0-20170926152145-5ae023fef618
github.com/markbates/grift v0.0.0-20180319170132-76f93617a788
github.com/markbates/inflect v0.0.0-20180514174915-dd7de90c06bc
github.com/markbates/deplist v1.0.0
github.com/markbates/going v1.0.0
github.com/markbates/grift v1.0.0
github.com/markbates/hmax v1.0.0
github.com/markbates/inflect v1.0.0
github.com/markbates/refresh v1.4.0
github.com/markbates/sigtx v1.0.0
github.com/markbates/validate v1.0.0
github.com/mattn/go-sqlite3 v1.7.0
github.com/microcosm-cc/bluemonday v0.0.0-20180327211928-995366fdf961
github.com/markbates/willie v1.0.0
github.com/mattn/anko v0.0.5
github.com/mattn/go-sqlite3 v1.9.0
github.com/mitchellh/go-homedir v0.0.0-20180523094522-3864e76763d9
github.com/monoculum/formam v0.0.0-20170814190438-f25191ae7744
github.com/monoculum/formam v0.0.0-20170619223434-99ca9dcbaca6
github.com/nicksnyder/go-i18n v1.10.0
github.com/pelletier/go-toml v1.2.0
github.com/russross/blackfriday v1.5.1
github.com/satori/go.uuid v1.2.0
github.com/sergi/go-diff v1.0.0
github.com/shurcooL/github_flavored_markdown v0.0.0-20180602233135-8913699a52e3
github.com/shurcooL/highlight_diff v0.0.0-20170515013008-09bb4053de1b
github.com/shurcooL/highlight_go v0.0.0-20170515013102-78fb10f4a5f8
github.com/shurcooL/octicon v0.0.0-20180602230221-c42b0e3b24d9
github.com/shurcooL/sanitized_anchor_name v0.0.0-20170918181015-86672fcb3f95
github.com/sirupsen/logrus v1.0.5
github.com/sourcegraph/annotate v0.0.0-20160123013949-f4cad6c6324d
github.com/sourcegraph/syntaxhighlight v0.0.0-20170531221838-bd320f5d308e
github.com/spf13/cobra v0.0.3
github.com/spf13/pflag v1.0.1
github.com/stretchr/objx v0.1.1
github.com/stretchr/testify v1.2.2
github.com/unrolled/secure v0.0.0-20180416205222-a1cf62cc2159
golang.org/x/crypto v0.0.0-20180608092829-8ac0e0d97ce4
golang.org/x/net v0.0.0-20180530234432-1e491301e022
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f
golang.org/x/sys v0.0.0-20180610122900-7c1e4f34a39c
gopkg.in/check.v1 v1.0.0-20161208181325-20d25e280405
gopkg.in/mail.v2 v2.0.0-20180609202316-c55e3fbae0e2
golang.org/x/crypto v0.0.0-20180614221331-a8fb68e7206f
golang.org/x/net v0.0.0-20180611182652-db08ff08e862
golang.org/x/sys v0.0.0-20180616030259-6c888cc515d3
google.golang.org/appengine v1.1.0
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc
gopkg.in/mail.v2 v2.0.0-20180301192024-63235f23494b
gopkg.in/yaml.v2 v2.2.1
)
Loading

0 comments on commit c132324

Please sign in to comment.