mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
228 lines
5.7 KiB
TOML
228 lines
5.7 KiB
TOML
|
|
## Gopkg.toml example (these lines may be deleted)
|
|
|
|
## "metadata" defines metadata about the project that could be used by other independent
|
|
## systems. The metadata defined here will be ignored by dep.
|
|
# [metadata]
|
|
# key1 = "value that convey data to other systems"
|
|
# system1-data = "value that is used by a system"
|
|
# system2-data = "value that is used by another system"
|
|
|
|
## "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"]
|
|
|
|
## Constraints are rules for how directly imported projects
|
|
## may be incorporated into the depgraph. They are respected by
|
|
## dep whether coming from the Gopkg.toml of the current project or a dependency.
|
|
# [[constraint]]
|
|
## 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"
|
|
#
|
|
## "metadata" defines metadata about the dependency or override that could be used
|
|
## by other independent systems. The metadata defined here will be ignored by dep.
|
|
# [metadata]
|
|
# key1 = "value that convey data to other systems"
|
|
# system1-data = "value that is used by a system"
|
|
# system2-data = "value that is used by another system"
|
|
|
|
## Overrides have the same structure as [[constraint]], but supersede all
|
|
## [[constraint]] declarations from all projects. Only [[override]] from
|
|
## the current project's are applied.
|
|
##
|
|
## Overrides are a sledgehammer. Use them only as a last resort.
|
|
# [[override]]
|
|
## 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 overridden 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"
|
|
|
|
|
|
|
|
[[constraint]]
|
|
branch = "master"
|
|
name = "code.cloudfoundry.org/bytefmt"
|
|
|
|
[[constraint]]
|
|
branch = "master"
|
|
name = "github.com/Sirupsen/logrus"
|
|
|
|
[[constraint]]
|
|
branch = "master"
|
|
name = "github.com/amir/raidman"
|
|
|
|
[[constraint]]
|
|
name = "github.com/aws/aws-sdk-go"
|
|
version = "1.8.32"
|
|
|
|
[[constraint]]
|
|
name = "github.com/boltdb/bolt"
|
|
version = "1.3.0"
|
|
|
|
[[constraint]]
|
|
name = "github.com/cactus/go-statsd-client"
|
|
version = "3.1.0"
|
|
|
|
[[constraint]]
|
|
name = "github.com/ccirello/supervisor"
|
|
version = "0.5.3"
|
|
|
|
[[constraint]]
|
|
name = "github.com/dchest/siphash"
|
|
version = "1.0.0"
|
|
|
|
[[constraint]]
|
|
branch = "master"
|
|
name = "github.com/dghubble/go-twitter"
|
|
|
|
[[constraint]]
|
|
name = "github.com/dghubble/oauth1"
|
|
version = "0.4.0"
|
|
|
|
[[constraint]]
|
|
name = "github.com/dgrijalva/jwt-go"
|
|
version = "3.0.0"
|
|
|
|
[[constraint]]
|
|
branch = "master"
|
|
name = "github.com/docker/cli"
|
|
|
|
[[constraint]]
|
|
name = "github.com/docker/distribution"
|
|
version = "2.6.1"
|
|
|
|
[[constraint]]
|
|
branch = "master"
|
|
name = "github.com/fsouza/go-dockerclient"
|
|
|
|
[[constraint]]
|
|
name = "github.com/garyburd/redigo"
|
|
version = "1.1.0"
|
|
|
|
[[constraint]]
|
|
name = "github.com/giantswarm/semver-bump"
|
|
version = "1.1.1"
|
|
|
|
[[constraint]]
|
|
branch = "master"
|
|
name = "github.com/gin-gonic/gin"
|
|
|
|
[[constraint]]
|
|
branch = "master"
|
|
name = "github.com/go-openapi/errors"
|
|
|
|
[[constraint]]
|
|
branch = "master"
|
|
name = "github.com/go-openapi/loads"
|
|
|
|
[[constraint]]
|
|
branch = "master"
|
|
name = "github.com/go-openapi/runtime"
|
|
|
|
[[constraint]]
|
|
branch = "master"
|
|
name = "github.com/go-openapi/spec"
|
|
|
|
[[constraint]]
|
|
branch = "master"
|
|
name = "github.com/go-openapi/strfmt"
|
|
|
|
[[constraint]]
|
|
branch = "master"
|
|
name = "github.com/go-openapi/swag"
|
|
|
|
[[constraint]]
|
|
branch = "master"
|
|
name = "github.com/go-openapi/validate"
|
|
|
|
[[constraint]]
|
|
branch = "master"
|
|
name = "github.com/go-sql-driver/mysql"
|
|
|
|
[[constraint]]
|
|
branch = "master"
|
|
name = "github.com/google/btree"
|
|
|
|
[[constraint]]
|
|
branch = "master"
|
|
name = "github.com/heroku/docker-registry-client"
|
|
|
|
[[constraint]]
|
|
branch = "master"
|
|
name = "github.com/funcy/functions_go"
|
|
|
|
[[constraint]]
|
|
branch = "master"
|
|
name = "github.com/iron-io/iron_go3"
|
|
|
|
[[constraint]]
|
|
branch = "master"
|
|
name = "github.com/jmoiron/jsonq"
|
|
|
|
[[constraint]]
|
|
branch = "master"
|
|
name = "github.com/lib/pq"
|
|
|
|
[[constraint]]
|
|
name = "github.com/moby/moby"
|
|
version = "1.13.1"
|
|
|
|
[[constraint]]
|
|
branch = "master"
|
|
name = "github.com/pkg/errors"
|
|
|
|
[[constraint]]
|
|
branch = "master"
|
|
name = "github.com/satori/go.uuid"
|
|
|
|
[[constraint]]
|
|
branch = "master"
|
|
name = "github.com/spf13/viper"
|
|
|
|
[[constraint]]
|
|
name = "github.com/urfave/cli"
|
|
version = "1.19.1"
|
|
|
|
[[constraint]]
|
|
branch = "master"
|
|
name = "github.com/vrischmann/envconfig"
|
|
|
|
[[constraint]]
|
|
branch = "master"
|
|
name = "golang.org/x/crypto"
|
|
|
|
[[constraint]]
|
|
branch = "v2"
|
|
name = "gopkg.in/mgo.v2"
|
|
|
|
[[constraint]]
|
|
branch = "v2"
|
|
name = "gopkg.in/yaml.v2"
|