This repository has been archived by the owner on May 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gopkg.toml
95 lines (82 loc) · 2.36 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
# 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 = [
"github.com/satori/go.uuid",
"github.com/ipfs/go-verifcid",
#"github.com/ipfs/go-log",
"github.com/gxed/pubsub",
#"github.com/ipfs/go-ipfs-delay",
"github.com/ipfs/go-ipfs-exchange-interface",
"github.com/ipfs/go-ipfs-flags",
"github.com/ipfs/go-ipfs-pq",
"github.com/ipfs/go-ipfs-routing/mock",
#"github.com/libp2p/go-libp2p-netutil",
#"github.com/libp2p/go-testutil",
#"github.com/ipfs/go-datastore",
#"github.com/libp2p/go-libp2p"
]
# To keep us on latest since maintainer stopped releasing versions
[[constraint]]
name = "github.com/hashicorp/memberlist"
branch = "master"
# To avoid pulling old gorp version, we use master of our fork
[[constraint]]
name = "github.com/mattermost/gorp"
branch = "master"
# Fork for adding our own method to viper EnvSettings
[[constraint]]
name = "github.com/mattermost/viper"
source = "https://github.com/mattermost/viper"
branch = "mattermost"
# Keep back because of breaking API changes
[[constraint]]
name = "github.com/segmentio/analytics-go"
version = "2.1.1"
# Lock to control when plugins use new versions
[[constraint]]
name = "github.com/hashicorp/go-hclog"
revision = "e45cbeb79f0411b1cfedd3f226ff69d5d433c762"
[[constraint]]
name = "github.com/hashicorp/go-plugin"
revision = "a4620f9913d19f03a6bf19b2f304daaaf83ea130"
[[constraint]]
name = "github.com/blang/semver"
version = "~3.5.0"
[[constraint]]
name = "github.com/c3systems/c3-sdk-go"
version = "0.0.7"
[[constraint]]
name = "github.com/c3systems/c3-go"
branch = "develop"
[[constraint]]
name = "github.com/ipfs/go-verifcid"
branch = "master"
[[constraint]]
name = "github.com/satori/go.uuid"
revision = "36e9d2ebbde5e3f13ab2e25625fd453271d6522e"
[prune]
go-tests = true
unused-packages = true