forked from nyaruka/courier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGopkg.toml
127 lines (103 loc) · 3.58 KB
/
Gopkg.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
## Gopkg.toml example (these lines may be deleted)
## "required" lists a set of packages (not projects) that must be included in
## Gopkg.lock. This list is merged with the set of packages imported by the current
## project. Use it when your project needs a package it doesn't explicitly import -
## including "main" packages.
# required = ["github.com/user/thing/cmd/thing"]
## "ignored" lists a set of packages (not projects) that are ignored when
## dep statically analyzes source code. Ignored packages can be in this project,
## or in a dependency.
# ignored = ["github.com/user/project/badpkg"]
## Dependencies define constraints on dependent projects. They are respected by
## dep whether coming from the Gopkg.toml of the current project or a dependency.
# [[dependencies]]
## Required: the root import path of the project being constrained.
# name = "github.com/user/project"
#
## Recommended: the version constraint to enforce for the project.
## Only one of "branch", "version" or "revision" can be specified.
# version = "1.0.0"
# branch = "master"
# revision = "abc123"
#
## Optional: an alternate location (URL or import path) for the project's source.
# source = "https://github.com/myfork/package.git"
## Overrides have the same structure as [[dependencies]], but supercede all
## [[dependencies]] declarations from all projects. Only the current project's
## [[overrides]] are applied.
##
## Overrides are a sledgehammer. Use them only as a last resort.
# [[overrides]]
## Required: the root import path of the project being constrained.
# name = "github.com/user/project"
#
## Optional: specifying a version constraint override will cause all other
## constraints on this project to be ignored; only the overriden constraint
## need be satisfied.
## Again, only one of "branch", "version" or "revision" can be specified.
# version = "1.0.0"
# branch = "master"
# revision = "abc123"
#
## Optional: specifying an alternate source location as an override will
## enforce that the alternate location is used for that project, regardless of
## what source location any dependent projects specify.
# source = "https://github.com/myfork/package.git"
[metadata.heroku]
root-package = "github.com/nyaruka/courier"
go-version = "go1.9.2"
install = [ "./..." ]
[[dependencies]]
name = "github.com/aws/aws-sdk-go"
version = "^1.12.48"
[[dependencies]]
branch = "master"
name = "github.com/buger/jsonparser"
[[dependencies]]
name = "github.com/evalphobia/logrus_sentry"
version = ">=0.4.2, <1.0.0"
[[dependencies]]
name = "github.com/garyburd/redigo"
version = "^1.3.0"
[[dependencies]]
branch = "master"
name = "github.com/go-chi/chi"
[[dependencies]]
branch = "master"
name = "github.com/go-errors/errors"
[[dependencies]]
branch = "master"
name = "github.com/gorilla/schema"
[[dependencies]]
branch = "master"
name = "github.com/jmoiron/sqlx"
[[dependencies]]
branch = "master"
name = "github.com/koding/multiconfig"
[[dependencies]]
branch = "master"
name = "github.com/lib/pq"
[[dependencies]]
branch = "master"
name = "github.com/nyaruka/gocommon"
[[dependencies]]
branch = "master"
name = "github.com/pkg/errors"
[[dependencies]]
name = "github.com/satori/go.uuid"
version = "^1.1.0"
[[dependencies]]
name = "github.com/sirupsen/logrus"
version = "^1.0.4"
[[dependencies]]
name = "github.com/stretchr/testify"
version = "^1.1.4"
[[dependencies]]
name = "gopkg.in/go-playground/validator.v9"
version = "^9.9.1"
[[dependencies]]
name = "gopkg.in/guregu/null.v3"
version = "^3.3.0"
[[dependencies]]
name = "gopkg.in/h2non/filetype.v1"
version = "^1.0.5"