go.mod 5.03 KB
Newer Older
tavit ohanian's avatar
tavit ohanian committed
1
module gitlab.dms3.io/dms3/go-dms3
Jakub Sztandera's avatar
Jakub Sztandera committed
2 3

require (
Steven Allen's avatar
Steven Allen committed
4
	bazil.org/fuse v0.0.0-20200117225306-7b5117fecadc
tavit ohanian's avatar
tavit ohanian committed
5
	contrib.go.opencensus.io/exporter/prometheus v0.3.0
6
	github.com/blang/semver v3.5.1+incompatible
Jakub Sztandera's avatar
Jakub Sztandera committed
7
	github.com/bren2010/proquint v0.0.0-20160323162903-38337c27106d
Fazlul Shahriar's avatar
Fazlul Shahriar committed
8
	github.com/cheggaaa/pb v1.0.29
tavit ohanian's avatar
tavit ohanian committed
9
	github.com/coreos/go-systemd/v22 v22.3.2
Jakub Sztandera's avatar
Jakub Sztandera committed
10 11
	github.com/dustin/go-humanize v1.0.0
	github.com/elgris/jsondiff v0.0.0-20160530203242-765b5c24c302
tavit ohanian's avatar
tavit ohanian committed
12
	github.com/facebookgo/atomicfile v0.0.0-20151019160806-2de1f203e7d5
13
	github.com/fsnotify/fsnotify v1.4.9
Adin Schmahmann's avatar
Adin Schmahmann committed
14
	github.com/gabriel-vasile/mimetype v1.1.2
Steven Allen's avatar
Steven Allen committed
15
	github.com/go-bindata/go-bindata/v3 v3.1.3
16
	github.com/gogo/protobuf v1.3.2
tavit ohanian's avatar
tavit ohanian committed
17
	github.com/hashicorp/go-multierror v1.1.1
Steven Allen's avatar
Steven Allen committed
18
	github.com/hashicorp/golang-lru v0.5.4
tavit ohanian's avatar
tavit ohanian committed
19
	github.com/ipfs/go-datastore v0.4.6
Steven Allen's avatar
Steven Allen committed
20
	github.com/jbenet/go-is-domain v1.0.5
Jakub Sztandera's avatar
Jakub Sztandera committed
21
	github.com/jbenet/go-random v0.0.0-20190219211222-123a90aedc0c
Steven Allen's avatar
Steven Allen committed
22
	github.com/jbenet/go-temp-err-catcher v0.1.0
23
	github.com/jbenet/goprocess v0.1.4
tavit ohanian's avatar
tavit ohanian committed
24 25
	github.com/lucas-clemente/quic-go v0.21.1
	// github.com/lucas-clemente/quic-go v0.23.0
Steven Allen's avatar
Steven Allen committed
26
	github.com/mattn/go-runewidth v0.0.9 // indirect
tavit ohanian's avatar
tavit ohanian committed
27
	github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
Jakub Sztandera's avatar
Jakub Sztandera committed
28
	github.com/mitchellh/go-homedir v1.1.0
29
	github.com/multiformats/go-multibase v0.0.3
tavit ohanian's avatar
tavit ohanian committed
30
	github.com/multiformats/go-multihash v0.0.15
Adin Schmahmann's avatar
Adin Schmahmann committed
31
	github.com/opentracing/opentracing-go v1.2.0
Steven Allen's avatar
Steven Allen committed
32
	github.com/pkg/errors v0.9.1
tavit ohanian's avatar
tavit ohanian committed
33 34 35
	github.com/prometheus/client_golang v1.11.0
	github.com/prometheus/statsd_exporter v0.21.0 // indirect
	github.com/prometheus/common v0.30.0 // indirect
36
	github.com/stretchr/testify v1.7.0
Jakub Sztandera's avatar
Jakub Sztandera committed
37 38 39 40
	github.com/syndtr/goleveldb v1.0.0
	github.com/whyrusleeping/base32 v0.0.0-20170828182744-c30ac30633cc
	github.com/whyrusleeping/go-sysinfo v0.0.0-20190219211824-4a357d4b90b1
	github.com/whyrusleeping/multiaddr-filter v0.0.0-20160516205228-e903e4adabd7
Adin Schmahmann's avatar
Adin Schmahmann committed
41
	github.com/whyrusleeping/tar-utils v0.0.0-20201201191210-20a61371de5b
tavit ohanian's avatar
tavit ohanian committed
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 104 105 106 107 108 109 110 111 112 113 114 115
	//
	gitlab.dms3.io/dms3/go-bitswap v0.0.2
	gitlab.dms3.io/dms3/go-block-format v0.0.4
	gitlab.dms3.io/dms3/go-blockservice v0.0.3
	gitlab.dms3.io/dms3/go-cid v0.0.6
	gitlab.dms3.io/dms3/go-cidutil v0.0.3
	gitlab.dms3.io/dms3/go-datastore v0.0.2
	gitlab.dms3.io/dms3/go-detect-race v0.0.3
	gitlab.dms3.io/dms3/go-dms3-blockstore v0.0.3
	gitlab.dms3.io/dms3/go-dms3-chunker v0.0.4
	gitlab.dms3.io/dms3/go-dms3-cmds v0.0.3
	gitlab.dms3.io/dms3/go-dms3-config v0.0.3
	gitlab.dms3.io/dms3/go-dms3-ds-help v0.0.4
	gitlab.dms3.io/dms3/go-dms3-exchange-interface v0.0.4
	gitlab.dms3.io/dms3/go-dms3-exchange-offline v0.0.3
	gitlab.dms3.io/dms3/go-dms3-files v0.0.2
	gitlab.dms3.io/dms3/go-dms3-pinner v0.0.3
	gitlab.dms3.io/dms3/go-dms3-posinfo v0.0.3
	gitlab.dms3.io/dms3/go-dms3-provider v0.0.2
	gitlab.dms3.io/dms3/go-dms3-routing v0.0.3
	gitlab.dms3.io/dms3/go-dms3-util v0.0.2
	gitlab.dms3.io/dms3/go-dms3ns v0.0.3
	gitlab.dms3.io/dms3/go-ds-badger v0.0.2
	gitlab.dms3.io/dms3/go-ds-flatfs v0.0.2
	gitlab.dms3.io/dms3/go-ds-leveldb v0.0.2
	gitlab.dms3.io/dms3/go-ds-measure v0.0.2
	gitlab.dms3.io/dms3/go-filestore v0.0.1
	gitlab.dms3.io/dms3/go-fs-lock v0.0.2
	gitlab.dms3.io/dms3/go-graphsync v0.0.1
	gitlab.dms3.io/dms3/go-ld-cbor v0.0.4
	gitlab.dms3.io/dms3/go-ld-format v0.0.3
	gitlab.dms3.io/dms3/go-ld-git v0.0.3
	gitlab.dms3.io/dms3/go-log v0.0.2
	gitlab.dms3.io/dms3/go-merkledag v0.0.3
	gitlab.dms3.io/dms3/go-metrics-interface v0.0.2
	gitlab.dms3.io/dms3/go-metrics-prometheus v0.0.2
	gitlab.dms3.io/dms3/go-mfs v0.0.3
	gitlab.dms3.io/dms3/go-path v0.0.4
	gitlab.dms3.io/dms3/go-pinning-service-http-client v0.0.3
	gitlab.dms3.io/dms3/go-unixfs v0.0.4
	gitlab.dms3.io/dms3/go-verifcid v0.0.3
	gitlab.dms3.io/dms3/interface-go-dms3-core v0.0.3
	gitlab.dms3.io/is/go-idx-config v0.0.2
	gitlab.dms3.io/is/go-idx-engine v0.0.1
	gitlab.dms3.io/ld/go-car v0.0.3
	gitlab.dms3.io/mf/go-multiaddr v0.0.3
	gitlab.dms3.io/mf/go-multiaddr-dns v0.0.2
	gitlab.dms3.io/p2p/go-p2p v0.0.5
	gitlab.dms3.io/p2p/go-p2p-circuit v0.0.3
	gitlab.dms3.io/p2p/go-p2p-connmgr v0.0.3
	gitlab.dms3.io/p2p/go-p2p-core v0.0.3
	gitlab.dms3.io/p2p/go-p2p-discovery v0.0.3
	gitlab.dms3.io/p2p/go-p2p-http v0.0.2
	gitlab.dms3.io/p2p/go-p2p-kad-dht v0.0.2
	gitlab.dms3.io/p2p/go-p2p-kbucket v0.0.3
	gitlab.dms3.io/p2p/go-p2p-loggables v0.0.3
	gitlab.dms3.io/p2p/go-p2p-mplex v0.0.3
	gitlab.dms3.io/p2p/go-p2p-noise v0.0.3
	gitlab.dms3.io/p2p/go-p2p-peerstore v0.0.3
	gitlab.dms3.io/p2p/go-p2p-pubsub v0.0.3
	gitlab.dms3.io/p2p/go-p2p-pubsub-router v0.0.3
	gitlab.dms3.io/p2p/go-p2p-quic-transport v0.0.3
	gitlab.dms3.io/p2p/go-p2p-record v0.0.3
	gitlab.dms3.io/p2p/go-p2p-routing-helpers v0.0.3
	gitlab.dms3.io/p2p/go-p2p-secio v0.0.3
	gitlab.dms3.io/p2p/go-p2p-swarm v0.0.3
	gitlab.dms3.io/p2p/go-p2p-testing v0.0.4
	gitlab.dms3.io/p2p/go-p2p-tls v0.0.3
	gitlab.dms3.io/p2p/go-p2p-yamux v0.0.4
	gitlab.dms3.io/p2p/go-socket-activation v0.0.3
	gitlab.dms3.io/p2p/go-tcp-transport v0.0.3
	gitlab.dms3.io/p2p/go-ws-transport v0.0.3
	//
	go.opencensus.io v0.23.0
Adin Schmahmann's avatar
Adin Schmahmann committed
116
	go.uber.org/fx v1.13.1
tavit ohanian's avatar
tavit ohanian committed
117 118 119 120
	go.uber.org/zap v1.19.0
	golang.org/x/crypto v0.0.0-20210813211128-0a44fdfbc16e
	golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
	golang.org/x/sys v0.0.0-20210816183151-1e6c022a8912
Jakub Sztandera's avatar
Jakub Sztandera committed
121
)
Jakub Sztandera's avatar
Jakub Sztandera committed
122

tavit ohanian's avatar
tavit ohanian committed
123
go 1.15