-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathgo.mod
65 lines (62 loc) · 2.96 KB
/
go.mod
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
module github.com/qri-io/qri
go 1.12
replace (
github.com/go-critic/go-critic v0.0.0-20181204210945-c3db6069acc5 => github.com/go-critic/go-critic v0.0.0-20190422201921-c3db6069acc5
github.com/go-critic/go-critic v0.0.0-20181204210945-ee9bf5809ead => github.com/go-critic/go-critic v0.0.0-20190210220443-ee9bf5809ead
github.com/golangci/errcheck v0.0.0-20181003203344-ef45e06d44b6 => github.com/golangci/errcheck v0.0.0-20181223084120-ef45e06d44b6
github.com/golangci/go-tools v0.0.0-20180109140146-af6baa5dc196 => github.com/golangci/go-tools v0.0.0-20190318060251-af6baa5dc196
github.com/golangci/gofmt v0.0.0-20181105071733-0b8337e80d98 => github.com/golangci/gofmt v0.0.0-20181222123516-0b8337e80d98
github.com/golangci/gosec v0.0.0-20180901114220-66fb7fc33547 => github.com/golangci/gosec v0.0.0-20190211064107-66fb7fc33547
github.com/golangci/lint-1 v0.0.0-20180610141402-ee948d087217 => github.com/golangci/lint-1 v0.0.0-20190420132249-ee948d087217
mvdan.cc/unparam v0.0.0-20190124213536-fbb59629db34 => mvdan.cc/unparam v0.0.0-20190209190245-fbb59629db34
)
require (
github.com/beme/abide v0.0.0-20181227202223-4c487ef9d895
github.com/dustin/go-humanize v1.0.0
github.com/fatih/color v1.7.0
github.com/ghodss/yaml v1.0.0
github.com/gofrs/flock v0.7.1 // indirect
github.com/google/flatbuffers v1.11.0
github.com/google/go-cmp v0.3.0
github.com/ipfs/go-cid v0.0.2
github.com/ipfs/go-datastore v0.0.5
github.com/ipfs/go-ipfs v0.4.21
github.com/ipfs/go-ipfs-config v0.0.3
github.com/ipfs/go-ipld-format v0.0.2
github.com/ipfs/go-log v0.0.1
github.com/ipfs/interface-go-ipfs-core v0.0.8
github.com/libp2p/go-libp2p v0.0.28
github.com/libp2p/go-libp2p-circuit v0.0.8
github.com/libp2p/go-libp2p-connmgr v0.0.6
github.com/libp2p/go-libp2p-crypto v0.0.2
github.com/libp2p/go-libp2p-host v0.0.3
github.com/libp2p/go-libp2p-net v0.0.2
github.com/libp2p/go-libp2p-peer v0.1.1
github.com/libp2p/go-libp2p-peerstore v0.0.6
github.com/libp2p/go-libp2p-protocol v0.0.1
github.com/libp2p/go-libp2p-swarm v0.0.6
github.com/mitchellh/go-homedir v1.1.0
github.com/mr-tron/base58 v1.1.2
github.com/multiformats/go-multiaddr v0.0.4
github.com/multiformats/go-multicodec v0.1.6
github.com/multiformats/go-multihash v0.0.5
github.com/qri-io/apiutil v0.1.0
github.com/qri-io/dag v0.2.1-0.20190905192357-bbfe4c6d220e
github.com/qri-io/dataset v0.1.5-0.20191024204026-dbd50f316e05
github.com/qri-io/deepdiff v0.1.0
github.com/qri-io/doggos v0.1.0
github.com/qri-io/ioes v0.1.0
github.com/qri-io/iso8601 v0.1.0
github.com/qri-io/jsonschema v0.1.1
github.com/qri-io/qfs v0.1.1-0.20191017222245-b5d2cc022636
github.com/qri-io/starlib v0.4.1
github.com/qri-io/varName v0.1.0
github.com/sergi/go-diff v1.0.0
github.com/sirupsen/logrus v1.2.0
github.com/spf13/cobra v0.0.5
github.com/theckman/go-flock v0.7.1
go.starlark.net v0.0.0-20190528202925-30ae18b8564f
golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4
golang.org/x/sys v0.0.0-20190626221950-04f50cda93cb
gopkg.in/yaml.v2 v2.2.2
)