Vladimir Hodakov
b8226d8aa8
Recent game update changed pokememes view in pokedeks, so we need to reflect it by updating parser. Introducing DataCache - a silver bullet for eliminating lags linked to database queries. Less queries, more in RAM, faster work. Needs testing in production environment.
67 lines
1.3 KiB
TOML
67 lines
1.3 KiB
TOML
# 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 = "bitbucket.org/pztrn/flagger"
|
|
|
|
[[constraint]]
|
|
branch = "master"
|
|
name = "bitbucket.org/pztrn/mogrus"
|
|
|
|
[[constraint]]
|
|
name = "github.com/go-sql-driver/mysql"
|
|
version = "1.3.0"
|
|
|
|
[[constraint]]
|
|
name = "github.com/go-telegram-bot-api/telegram-bot-api"
|
|
version = "4.6.1"
|
|
|
|
[[constraint]]
|
|
branch = "master"
|
|
name = "github.com/jmoiron/sqlx"
|
|
|
|
[[constraint]]
|
|
name = "github.com/pressly/goose"
|
|
version = "2.1.0"
|
|
|
|
[[constraint]]
|
|
name = "github.com/robfig/cron"
|
|
version = "1.0.0"
|
|
|
|
[[constraint]]
|
|
branch = "master"
|
|
name = "golang.org/x/text"
|
|
|
|
[[constraint]]
|
|
branch = "v2"
|
|
name = "gopkg.in/yaml.v2"
|
|
|
|
[prune]
|
|
go-tests = true
|
|
unused-packages = true
|