-
Notifications
You must be signed in to change notification settings - Fork 32
/
Gopkg.toml
103 lines (89 loc) · 2.59 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
# 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
required = [
# used by transfer-gateway
"github.com/btcsuite/btcutil/base58",
# required for MacOS builds it seems, but not Linux
"golang.org/x/sys/cpu"
]
ignored = [
"github.com/loomnetwork/go-loom*",
"github.com/loomnetwork/gamechain*",
"github.com/miguelmota/go-solidity-sha3",
"golang.org/x/crypto*",
"google.golang.org/grpc*",
"github.com/gogo/protobuf*",
"github.com/hashicorp/go-plugin*",
"github.com/spf13/cobra*",
"github.com/spf13/pflag*",
"github.com/ethereum/go-ethereum*",
"github.com/go-kit/kit*",
"github.com/grpc-ecosystem/go-grpc-prometheus*",
"github.com/prometheus/client_golang/prometheus*",
"github.com/loomnetwork/transfer-gateway*",
"github.com/certusone/yubihsm-go*",
"github.com/jmhodges/levigo*", # can only build it with the right c packages
"github.com/btcsuite/btcd*"
]
[[constraint]]
name = "github.com/spf13/viper"
version = "~1.0.0"
[[constraint]]
name = "github.com/stretchr/testify"
version = "~1.2.1"
[[override]]
name = "github.com/tendermint/tendermint"
source = "https://github.com/loomnetwork/tendermint.git"
branch = "loomchain"
[[constraint]]
name = "github.com/gomodule/redigo"
version = "2.0.0"
[[constraint]]
branch = "master"
source = "https://github.com/loomnetwork/go-pubsub.git"
name = "github.com/phonkee/go-pubsub"
[[constraint]]
name = "golang.org/x/sys"
revision = "9b800f95dbbc54abff0acf7ee32d88ba4e328c89"
[[override]]
name = "github.com/tendermint/iavl"
source = "https://github.com/loomnetwork/iavl.git"
branch = "loomchain2"
[[override]]
name = "github.com/tendermint/go-amino"
version = "=0.14.0"
[[constraint]]
name = "github.com/hashicorp/golang-lru"
revision = "20f1fb78b0740ba8c3cb143a61e86ba5c8669768"
[[constraint]]
name = "github.com/allegro/bigcache"
revision = "84a0ff3f153cbd7e280a19029a864bb04b504e62"
[[constraint]]
name = "github.com/btcsuite/btcutil"
revision = "9e5f4b9a998d263e3ce9c56664a7816001ac8000"
[prune]
go-tests = true
unused-packages = true